mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 20:17:15 +08:00

* Need a login check * chore: Add Discord OAuth2 authentication endpoint chore: Update dependencies and clean up code chore: Update dependencies, add Discord OAuth2 authentication endpoint, and clean up code chore: Update dependencies, add Google OAuth2 authentication endpoint, and clean up code Code clean up uniqueness on external account id chore: Add Discord and Google OAuth2 authentication endpoints, and update dependencies code review fixes * chore: Update prodHandler to use clienturl flag for Access-Control-Allow-Origin * chore: Refactor FetchDiscordIdByUsername and FetchGoogleIdByUsername to handle null values * chore: Set secure and same-site attributes for session cookie * chore: Set session cookie expiration to 3 months * Update callback URL for Oauth2 client in docker-compose and rogueserver.go * Update callback URL for Oauth2 client in docker-compose and rogueserver.go --------- Co-authored-by: Matthew Olker <matthew.olker@gmail.com>
14 lines
260 B
Modula-2
14 lines
260 B
Modula-2
module github.com/pagefaultgames/rogueserver
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/go-sql-driver/mysql v1.7.1
|
|
github.com/robfig/cron/v3 v3.0.1
|
|
golang.org/x/crypto v0.22.0
|
|
)
|
|
|
|
require github.com/golang-jwt/jwt/v5 v5.2.1
|
|
|
|
require golang.org/x/sys v0.19.0 // indirect
|