feat: Implement update credentials endpoint

This commit is contained in:
Faruk AYDIN
2021-10-15 16:26:34 +02:00
committed by Ali BARIN
parent bfd63204a2
commit 46f68037ec
8 changed files with 103 additions and 5 deletions

View File

@@ -4,8 +4,9 @@ import User from './user'
class Credential extends Base {
id!: number
key!: string
data!: string
data!: any
userId!: number
verified: boolean
static tableName = 'credentials';