fix ldap crate and create migration for localAuth
Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed

This commit is contained in:
Mika Bomm 2025-04-01 12:30:04 +02:00
parent ed07ecfcd3
commit b7e31b9232
2 changed files with 25 additions and 11 deletions

1
crates/ldap/src/lib.rs Normal file
View file

@ -0,0 +1 @@

View file

@ -13,11 +13,7 @@ impl MigrationTrait for Migration {
Table::create() Table::create()
.table(Project::Table) .table(Project::Table)
.if_not_exists() .if_not_exists()
.col( .col(pk_uuid(Project::Id).extra("DEFAULT gen_random_uuid()"))
uuid(Project::Id)
.extra("DEFAULT gen_random_uuid()")
.primary_key(),
)
.col(string(Project::Name)) .col(string(Project::Name))
.to_owned(), .to_owned(),
) )
@ -49,12 +45,8 @@ impl MigrationTrait for Migration {
Table::create() Table::create()
.table(User::Table) .table(User::Table)
.if_not_exists() .if_not_exists()
.col( .col(pk_uuid(User::Id).extra("DEFAULT gen_random_uuid()"))
uuid(User::Id) .col(string_uniq(User::Name))
.extra("DEFAULT gen_random_uuid()")
.primary_key(),
)
.col(string(User::Name))
.col(string(User::Role)) .col(string(User::Role))
.to_owned(), .to_owned(),
) )
@ -101,6 +93,16 @@ impl MigrationTrait for Migration {
) )
.to_owned(), .to_owned(),
) )
.await?;
manager
.create_table(
Table::create()
.table(LocalAuth::Table)
.if_not_exists()
.col(pk_uuid(LocalAuth::Id))
.col(string(LocalAuth::Hash))
.to_owned(),
)
.await .await
} }
@ -117,6 +119,10 @@ impl MigrationTrait for Migration {
manager manager
.drop_table(Table::drop().table(User::Table).to_owned()) .drop_table(Table::drop().table(User::Table).to_owned())
.await?;
manager
.drop_table(Table::drop().table(UserGroupProject::Table).to_owned())
.await .await
} }
} }
@ -151,3 +157,10 @@ enum UserGroupProject {
GroupId, GroupId,
ProjectId, ProjectId,
} }
#[derive(DeriveIden)]
enum LocalAuth {
Table,
Id,
Hash,
}