Explorar el Código

authentication works

master
Archivist hace 5 años
padre
commit
7a2f8e2636
Se han modificado 2 ficheros con 55 adiciones y 14 borrados
  1. +48
    -8
      src/sales_backend.cr
  2. +7
    -6
      src/sales_backend/user.cr

+ 48
- 8
src/sales_backend.cr
La diferencia del archivo ha sido suprimido porque es demasiado grande
Ver fichero


+ 7
- 6
src/sales_backend/user.cr Ver fichero

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

Cargando…
Cancelar
Guardar