Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to prod #60

Merged
merged 9 commits into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
elif [ "$(sudo docker ps -a -q -f name=scaleUp)" ]; then
sudo docker rm scaleUp
fi
sudo docker run -d -p 8080:8080 --name scaleUp ${{ secrets.DOCKER_USERNAME }}/scaleup:latest
sudo docker run -d -p 80:80 --name scaleUp ${{ secrets.DOCKER_USERNAME }}/scaleup:latest

deploy-to-main:
name: Deploy to Production
Expand Down
4 changes: 0 additions & 4 deletions .jhipster/ActivityInvite.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
"dto": "mapstruct",
"enableAudit": true,
"fields": [
{
"fieldName": "willParticipate",
"fieldType": "Boolean"
},
{
"auditField": true,
"autoGenerate": true,
Expand Down
2 changes: 1 addition & 1 deletion dbscripts/insert_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ SELECT * FROM tbl_skill;
-- View the inserted data
SELECT * FROM tbl_code_tables;
-- View the inserted data
SELECT * FROM tbl_user_profiles;
SELECT * FROM tbl_user_profile;



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public JCacheManagerCustomizer cacheManagerCustomizer() {
createCache(cm, com.teamsixnus.scaleup.domain.Message.class.getName());
createCache(cm, com.teamsixnus.scaleup.domain.Activity.class.getName());
createCache(cm, com.teamsixnus.scaleup.domain.ActivityInvite.class.getName());
createCache(cm, com.teamsixnus.scaleup.domain.Notification.class.getName());
createCache(cm, com.teamsixnus.scaleup.domain.UserSkill.class.getName());
// jhipster-needle-ehcache-add-entry
};
Expand Down
17 changes: 0 additions & 17 deletions src/main/java/com/teamsixnus/scaleup/domain/ActivityInvite.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ public class ActivityInvite extends AbstractAuditingEntity<Long> implements Seri
@Column(name = "id")
private Long id;

@Column(name = "will_participate")
private Boolean willParticipate;

// Inherited createdBy definition
// Inherited createdDate definition
// Inherited lastModifiedBy definition
Expand Down Expand Up @@ -62,19 +59,6 @@ public void setId(Long id) {
this.id = id;
}

public Boolean getWillParticipate() {
return this.willParticipate;
}

public ActivityInvite willParticipate(Boolean willParticipate) {
this.setWillParticipate(willParticipate);
return this;
}

public void setWillParticipate(Boolean willParticipate) {
this.willParticipate = willParticipate;
}

// Inherited createdBy methods
public ActivityInvite createdBy(String createdBy) {
this.setCreatedBy(createdBy);
Expand Down Expand Up @@ -179,7 +163,6 @@ public int hashCode() {
public String toString() {
return "ActivityInvite{" +
"id=" + getId() +
", willParticipate='" + getWillParticipate() + "'" +
", createdBy='" + getCreatedBy() + "'" +
", createdDate='" + getCreatedDate() + "'" +
", lastModifiedBy='" + getLastModifiedBy() + "'" +
Expand Down
210 changes: 0 additions & 210 deletions src/main/java/com/teamsixnus/scaleup/domain/Notification.java

This file was deleted.

39 changes: 0 additions & 39 deletions src/main/java/com/teamsixnus/scaleup/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,6 @@ public class User extends AbstractAuditingEntity<Long> implements Serializable {
@Column(name = "password_hash", length = 60, nullable = false)
private String password;

@Size(max = 50)
@Column(name = "first_name", length = 50)
private String firstName;

@Size(max = 50)
@Column(name = "last_name", length = 50)
private String lastName;

@Email
@Size(min = 5, max = 254)
@Column(length = 254, unique = true)
Expand All @@ -64,10 +56,6 @@ public class User extends AbstractAuditingEntity<Long> implements Serializable {
@Column(name = "lang_key", length = 10)
private String langKey;

@Size(max = 256)
@Column(name = "image_url", length = 256)
private String imageUrl;

@Size(max = 20)
@Column(name = "activation_key", length = 20)
@JsonIgnore
Expand Down Expand Up @@ -117,22 +105,6 @@ public void setPassword(String password) {
this.password = password;
}

public String getFirstName() {
return firstName;
}

public void setFirstName(String firstName) {
this.firstName = firstName;
}

public String getLastName() {
return lastName;
}

public void setLastName(String lastName) {
this.lastName = lastName;
}

public String getEmail() {
return email;
}
Expand All @@ -141,14 +113,6 @@ public void setEmail(String email) {
this.email = email;
}

public String getImageUrl() {
return imageUrl;
}

public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}

public boolean isActivated() {
return activated;
}
Expand Down Expand Up @@ -219,10 +183,7 @@ public int hashCode() {
public String toString() {
return "User{" +
"login='" + login + '\'' +
", firstName='" + firstName + '\'' +
", lastName='" + lastName + '\'' +
", email='" + email + '\'' +
", imageUrl='" + imageUrl + '\'' +
", activated='" + activated + '\'' +
", langKey='" + langKey + '\'' +
", activationKey='" + activationKey + '\'' +
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ protected Specification<ActivityInvite> createSpecification(ActivityInviteCriter
if (criteria.getId() != null) {
specification = specification.and(buildRangeSpecification(criteria.getId(), ActivityInvite_.id));
}
if (criteria.getWillParticipate() != null) {
specification = specification.and(buildSpecification(criteria.getWillParticipate(), ActivityInvite_.willParticipate));
}
if (criteria.getCreatedBy() != null) {
specification = specification.and(buildStringSpecification(criteria.getCreatedBy(), ActivityInvite_.createdBy));
}
Expand Down
Loading
Loading