Basic database structure and partial implementation for UACs and tokens

This commit is contained in:
digimint 2024-06-24 03:41:00 -05:00
parent 9c6a1e808f
commit 36afeaad42
Signed by: digimint
GPG key ID: 947E0031C671B9A0
13 changed files with 454 additions and 192 deletions

View file

@ -0,0 +1,13 @@
package db.modules.uac
import db.modules.uac.UACSchema
import slick.jdbc.JdbcProfile
class UACQueries(
val profile: JdbcProfile,
val schema: UACSchema
):
import profile.api._
val UACBase = schema._uacTable
val tokenScopeBase = schema._uacTokenScopeTable