aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/accounts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/accounts')
-rw-r--r--shared/models/accounts/account.model.ts13
-rw-r--r--shared/models/accounts/follow.model.ts12
-rw-r--r--shared/models/accounts/index.ts2
3 files changed, 0 insertions, 27 deletions
diff --git a/shared/models/accounts/account.model.ts b/shared/models/accounts/account.model.ts
deleted file mode 100644
index d14701317..000000000
--- a/shared/models/accounts/account.model.ts
+++ /dev/null
@@ -1,13 +0,0 @@
1import { Avatar } from '../avatars/avatar.model'
2
3export interface Account {
4 id: number
5 uuid: string
6 name: string
7 host: string
8 followingCount: number
9 followersCount: number
10 createdAt: Date
11 updatedAt: Date
12 avatar: Avatar
13}
diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts
deleted file mode 100644
index cdc3da560..000000000
--- a/shared/models/accounts/follow.model.ts
+++ /dev/null
@@ -1,12 +0,0 @@
1import { Account } from './account.model'
2
3export type FollowState = 'pending' | 'accepted'
4
5export interface AccountFollow {
6 id: number
7 follower: Account
8 following: Account
9 state: FollowState
10 createdAt: Date
11 updatedAt: Date
12}
diff --git a/shared/models/accounts/index.ts b/shared/models/accounts/index.ts
deleted file mode 100644
index 8fe437b81..000000000
--- a/shared/models/accounts/index.ts
+++ /dev/null
@@ -1,2 +0,0 @@
1export * from './account.model'
2export * from './follow.model'