Przeglądaj źródła

authentication works

master
Archivist 5 lat temu
rodzic
commit
7a2f8e2636
2 zmienionych plików z 55 dodań i 14 usunięć
  1. +48
    -8
      src/sales_backend.cr
  2. +7
    -6
      src/sales_backend/user.cr

+ 48
- 8
src/sales_backend.cr
Plik diff jest za duży
Wyświetl plik


+ 7
- 6
src/sales_backend/user.cr Wyświetl plik

@ -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

Ładowanie…
Anuluj
Zapisz