mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-07 18:04:56 -04:00
refactor(backend): rename auth to public-auth-token
Signed-off-by: Yannick Bungers <git@innay.de> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
parent
52fe7f55de
commit
73d9c3231b
30 changed files with 338 additions and 327 deletions
|
@ -5,7 +5,6 @@
|
|||
*/
|
||||
import { DataSource } from 'typeorm';
|
||||
|
||||
import { AuthToken } from './auth/auth-token.entity';
|
||||
import { Author } from './authors/author.entity';
|
||||
import { Group } from './groups/group.entity';
|
||||
import { HistoryEntry } from './history/history-entry.entity';
|
||||
|
@ -17,6 +16,7 @@ import { Note } from './notes/note.entity';
|
|||
import { Tag } from './notes/tag.entity';
|
||||
import { NoteGroupPermission } from './permissions/note-group-permission.entity';
|
||||
import { NoteUserPermission } from './permissions/note-user-permission.entity';
|
||||
import { PublicAuthToken } from './public-auth-token/public-auth-token.entity';
|
||||
import { Edit } from './revisions/edit.entity';
|
||||
import { Revision } from './revisions/revision.entity';
|
||||
import { Session } from './sessions/session.entity';
|
||||
|
@ -40,7 +40,7 @@ const dataSource = new DataSource({
|
|||
HistoryEntry,
|
||||
MediaUpload,
|
||||
Tag,
|
||||
AuthToken,
|
||||
PublicAuthToken,
|
||||
Identity,
|
||||
Author,
|
||||
Session,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue