Skip to content

Commit

Permalink
merging main
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerSchaefer4 committed Jun 8, 2024
2 parents 169bd68 + 79e1013 commit b652ead
Show file tree
Hide file tree
Showing 104 changed files with 4,215 additions and 2,875 deletions.
52 changes: 0 additions & 52 deletions backend/auth/locals.go

This file was deleted.

7 changes: 5 additions & 2 deletions backend/constants/db.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package constants

import "time"

const (
MAX_IDLE_CONNECTIONS int = 10
MAX_OPEN_CONNECTIONS int = 100
MAX_IDLE_CONNECTIONS int = 10
MAX_OPEN_CONNECTIONS int = 100
DB_TIMEOUT time.Duration = 200 * time.Millisecond
)
14 changes: 5 additions & 9 deletions backend/database/super.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,10 @@ func SuperUser(superUserSettings config.SuperUserSettings) (*models.User, error)

func SuperClub() models.Club {
return models.Club{
Name: "SAC",
Preview: "SAC",
Description: "SAC",
NumMembers: 0,
IsRecruiting: true,
RecruitmentCycle: models.Always,
RecruitmentType: models.Application,
ApplicationLink: "https://generatenu.com/apply",
Logo: "https://aws.amazon.com/s3",
Name: "SAC",
Preview: "SAC",
Description: "SAC",
NumMembers: 0,
Logo: "https://aws.amazon.com/s3",
}
}
Loading

0 comments on commit b652ead

Please sign in to comment.