all developments of milestone 1

This commit is contained in:
setop
2024-04-10 12:36:21 +00:00
parent a78dc261e5
commit 7030d56864
266 changed files with 5391 additions and 2609 deletions

View File

@@ -10,8 +10,24 @@ export const CONFIG = gql`
registrationsOpen
registrationsAllowlist
demoMode
longEvents
countryCode
languages
primaryColor
secondaryColor
instanceLogo {
url
}
defaultPicture {
id
url
name
metadata {
width
height
blurhash
}
}
eventCategories {
id
label
@@ -425,6 +441,14 @@ export const DEMO_MODE = gql`
}
`;
export const LONG_EVENTS = gql`
query LongEvents {
config {
longEvents
}
}
`;
export const ANALYTICS = gql`
query Analytics {
config {
@@ -454,6 +478,42 @@ export const SEARCH_CONFIG = gql`
}
`;
export const INSTANCE_LOGO = gql`
query InstanceLogo {
config {
instanceLogo {
url
}
}
}
`;
export const COLORS = gql`
query Colors {
config {
primaryColor
secondaryColor
}
}
`;
export const DEFAULT_PICTURE = gql`
query DefaultPicture {
config {
defaultPicture {
id
url
name
metadata {
width
height
blurhash
}
}
}
}
`;
export const REGISTRATIONS = gql`
query Registrations {
config {