30 lines
No EOL
977 B
Scala
30 lines
No EOL
977 B
Scala
/*
|
|
UNIT_CA5 - Stream management bot
|
|
Copyright (C) 2024 digimint
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
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 |