first commit v3 initialiazed a temporary repository for darmanet client

This commit is contained in:
2026-09-08 16:04:01 +03:30
commit 5c7fd95052
216 changed files with 30050 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { UserModel } from 'src/database/model/user.model';
export class Identity {
user: UserModel;
public get isAuthenticated(): boolean {
return !!this.user;
}
}
// export class AdminIdentity {
// admin: AdminModel;
// public get isAuthenticated(): boolean {
// return !!this.admin;
// }
// }