mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
- Add changelog entry under Unreleased → Added
- Introduce PlatformsResponse interface for extensibility
- Update controller to return { platforms: Platform[] } structure
- Add readPlatforms permission to ADMIN role
pull/6097/head
5 changed files with 17 additions and 3 deletions
@ -0,0 +1,5 @@ |
|||
import { Platform } from '@prisma/client'; |
|||
|
|||
export interface PlatformsResponse { |
|||
platforms: Platform[]; |
|||
} |
|||
Loading…
Reference in new issue