diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-04 21:15:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-04 21:15:57 +0900 |
| commit | 18e1efc7ecd3f5a6d774c16f17526d12ae46b2f5 (patch) | |
| tree | 8f2cb50644bb3679eafd29fb9e7448ed5069321c /src/models/index.ts | |
| parent | メールアドレスの設定を促すように (diff) | |
| download | misskey-18e1efc7ecd3f5a6d774c16f17526d12ae46b2f5.tar.gz misskey-18e1efc7ecd3f5a6d774c16f17526d12ae46b2f5.tar.bz2 misskey-18e1efc7ecd3f5a6d774c16f17526d12ae46b2f5.zip | |
Ad (#7495)
* wip
* Update ad.vue
* Update default.widgets.vue
* wip
* Create 1620019354680-ad.ts
* wip
* Update ads.vue
* wip
* Update ad.vue
Diffstat (limited to 'src/models/index.ts')
| -rw-r--r-- | src/models/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/models/index.ts b/src/models/index.ts index 6ce453ef33..9f8bd104e9 100644 --- a/src/models/index.ts +++ b/src/models/index.ts @@ -60,6 +60,7 @@ import { MutedNote } from './entities/muted-note'; import { ChannelFollowing } from './entities/channel-following'; import { ChannelNotePining } from './entities/channel-note-pining'; import { RegistryItem } from './entities/registry-item'; +import { Ad } from './entities/ad'; import { PasswordResetRequest } from './entities/password-reset-request'; export const Announcements = getRepository(Announcement); @@ -123,4 +124,5 @@ export const Channels = getCustomRepository(ChannelRepository); export const ChannelFollowings = getRepository(ChannelFollowing); export const ChannelNotePinings = getRepository(ChannelNotePining); export const RegistryItems = getRepository(RegistryItem); +export const Ads = getRepository(Ad); export const PasswordResetRequests = getRepository(PasswordResetRequest); |