mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
59 lines
1.7 KiB
TypeScript
59 lines
1.7 KiB
TypeScript
import { Resolver, Query, Authorized } from 'type-graphql'
|
|
|
|
import { Community } from '@model/Community'
|
|
|
|
import { RIGHTS } from '@/auth/RIGHTS'
|
|
import CONFIG from '@/config'
|
|
|
|
@Resolver()
|
|
export class CommunityResolver {
|
|
@Authorized([RIGHTS.GET_COMMUNITY_INFO])
|
|
@Query(() => Community)
|
|
async getCommunityInfo(): Promise<Community> {
|
|
return new Community({
|
|
name: CONFIG.COMMUNITY_NAME,
|
|
description: CONFIG.COMMUNITY_DESCRIPTION,
|
|
url: CONFIG.COMMUNITY_URL,
|
|
registerUrl: CONFIG.COMMUNITY_REGISTER_URL,
|
|
})
|
|
}
|
|
|
|
@Authorized([RIGHTS.COMMUNITIES])
|
|
@Query(() => [Community])
|
|
async communities(): Promise<Community[]> {
|
|
if (CONFIG.PRODUCTION)
|
|
return [
|
|
new Community({
|
|
id: 3,
|
|
name: 'Gradido-Akademie',
|
|
description: 'Freies Institut für Wirtschaftsbionik.',
|
|
url: 'https://gradido.net',
|
|
registerUrl: 'https://gdd1.gradido.com/register-community',
|
|
}),
|
|
]
|
|
return [
|
|
new Community({
|
|
id: 1,
|
|
name: 'Gradido Entwicklung',
|
|
description: 'Die lokale Entwicklungsumgebung von Gradido.',
|
|
url: 'http://localhost/',
|
|
registerUrl: 'http://localhost/register-community',
|
|
}),
|
|
new Community({
|
|
id: 2,
|
|
name: 'Gradido Staging',
|
|
description: 'Der Testserver der Gradido-Akademie.',
|
|
url: 'https://stage1.gradido.net/',
|
|
registerUrl: 'https://stage1.gradido.net/register-community',
|
|
}),
|
|
new Community({
|
|
id: 3,
|
|
name: 'Gradido-Akademie',
|
|
description: 'Freies Institut für Wirtschaftsbionik.',
|
|
url: 'https://gradido.net',
|
|
registerUrl: 'https://gdd1.gradido.com/register-community',
|
|
}),
|
|
]
|
|
}
|
|
}
|