capitalize serverside enum

This commit is contained in:
mgabor
2024-04-19 20:10:31 +02:00
parent 4960477627
commit 81bebdaf33
5 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ import { UserEntity } from 'src/entities/user.entity';
import { Column, Entity, Index, JoinColumn, ManyToOne, PrimaryColumn } from 'typeorm';
export enum AlbumUserRole {
Editor = 'editor',
Viewer = 'viewer',
EDITOR = 'editor',
VIEWER = 'viewer',
}
@Entity('albums_shared_users_users')