add banner messages to deployedConfigGql
All checks were successful
Tests / Tests (pull_request) Successful in 10s

This commit is contained in:
2025-06-12 10:21:24 -07:00
parent 2459cb78f8
commit bd383b1d55
2 changed files with 33 additions and 0 deletions

View File

@@ -291,6 +291,22 @@ type DeployedConfigGQL {
devMode: Boolean!
environment: String!
minimumAllowedAppVersion: String!
bannerMessages: [BannerGQL!]!
}
type BannerGQL {
id: Int!
message: String!
color: String!
kind: BannerKindEnum!
dismissible: Boolean!
priority: Int!
}
enum BannerKindEnum {
INFO
WARNING
ERROR
}
type VideoHistoryGQL {