♻️ Revierte parcialmente últimos cambios

This commit is contained in:
Manuel Cillero 2022-11-10 23:41:18 +01:00
parent 19b4c251b0
commit da8604980d
21 changed files with 356 additions and 353 deletions

View file

@ -58,7 +58,7 @@ fn form_login() -> Form {
t(
"username_help",
&args![
"app" => global::SETTINGS.app.name.to_owned()
"app" => config::SETTINGS.app.name.to_owned()
],
)
.as_str(),

View file

@ -51,7 +51,7 @@ impl MigrationTrait for Migration {
.await?;
// Built-in roles.
db::exec::<InsertStatement>(
app::db::exec::<InsertStatement>(
Query::insert()
.into_table(Role::Table)
.columns(vec![Role::Name, Role::Weight])