mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-02-22 08:52:06 +00:00
* chore: add oidc base config * wip: authorize page * feat: implement basic oidc functionality * refactor: implement oidc following tinyauth patterns * feat: adapt frontend to oidc flow * fix: review comments * fix: oidc review comments * feat: refresh token grant type support * feat: cleanup expired oidc sessions * feat: frontend i18n * fix: fix typo in error screen * tests: add basic testing * fix: more review comments * refactor: rework oidc error messages * feat: openid discovery endpoint * feat: jwk endpoint * i18n: fix typo * fix: more rabbit nitpicks * fix: final review comments * i18n: authorize page error messages
25 lines
678 B
YAML
25 lines
678 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "sqlite"
|
|
queries: "sql/*_queries.sql"
|
|
schema: "sql/*_schemas.sql"
|
|
gen:
|
|
go:
|
|
package: "repository"
|
|
out: "internal/repository"
|
|
rename:
|
|
uuid: "UUID"
|
|
oauth_groups: "OAuthGroups"
|
|
oauth_name: "OAuthName"
|
|
oauth_sub: "OAuthSub"
|
|
redirect_uri: "RedirectURI"
|
|
overrides:
|
|
- column: "sessions.oauth_groups"
|
|
go_type: "string"
|
|
- column: "sessions.oauth_name"
|
|
go_type: "string"
|
|
- column: "sessions.oauth_sub"
|
|
go_type: "string"
|
|
- column: "sessions.ldap_groups"
|
|
go_type: "string"
|