typings: Add APP role to UserRole enum

This commit is contained in:
juancarmore 2025-03-26 12:41:36 +01:00
parent 6bd19d1708
commit 8a403006fd

View File

@ -5,5 +5,6 @@ export interface User {
export const enum UserRole {
ADMIN = 'admin',
USER = 'user'
USER = 'user',
APP = 'app'
}