lenso-module-auth-oidc 0.1.11

First-party OIDC provider module for the Lenso backend framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use platform_core::Migration;

pub const AUTH_OIDC_MIGRATIONS: &[Migration] = &[
    Migration {
        name: "auth-oidc/0001_create_auth_oidc_schema",
        sql: include_str!("../migrations/0001_create_auth_oidc_schema.sql"),
    },
    Migration {
        name: "auth-oidc/0002_create_authorization_codes",
        sql: include_str!("../migrations/0002_create_authorization_codes.sql"),
    },
];