chore: remove meaningless comments

This commit is contained in:
Stavros
2025-07-12 13:17:06 +03:00
parent e742603c15
commit 8ebed0ac9a
24 changed files with 81 additions and 876 deletions

View File

@@ -1,6 +1,6 @@
package constants
// Claims are the OIDC supported claims (including preferd username for some reason)
// Claims are the OIDC supported claims (prefered username is included for convinience)
type Claims struct {
Name string `json:"name"`
Email string `json:"email"`
@@ -13,7 +13,7 @@ var Version = "development"
var CommitHash = "n/a"
var BuildTimestamp = "n/a"
// Cookie names
// Base cookie names
var SessionCookieName = "tinyauth-session"
var CsrfCookieName = "tinyauth-csrf"
var RedirectCookieName = "tinyauth-redirect"