Procházet zdrojové kódy

authentication works

master
Archivist před 5 roky
rodič
revize
7a2f8e2636
2 změnil soubory, kde provedl 55 přidání a 14 odebrání
  1. +48
    -8
      src/sales_backend.cr
  2. +7
    -6
      src/sales_backend/user.cr

+ 48
- 8
src/sales_backend.cr
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 7
- 6
src/sales_backend/user.cr Zobrazit soubor

@ -11,11 +11,12 @@ end
class User
JSON.mapping(
addresses: {type: Array(Address), nilable: true},
invoices: {type: Array(Invoice), nilable: true},
tokens: {type: Array(UUID), nilable: true},
email: String,
password_hash: {type: String, nilable: true},
type: {type: UserType, default: UserType::Normal},
addresses: {type: Array(Address), nilable: true},
invoices: {type: Array(Invoice), nilable: true},
tokens: {type: Array(UUID), nilable: true},
email: String,
password_hash: {type: String, nilable: true},
active: {type: Bool, default: false},
type: {type: UserType, default: UserType::Normal},
)
end

Načítá se…
Zrušit
Uložit