mirror of
https://github.com/Terncode/pixel.horse.git
synced 2026-09-24 21:55:52 +02:00
* Remove Patreon links, supper status checking * Add warnings to admin panel and README
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Component } from '@angular/core';
|
|
import { discordLink } from '../../../client/data';
|
|
import { GENERAL_RULES } from '../../../common/constants';
|
|
|
|
@Component({
|
|
selector: 'play-notice',
|
|
templateUrl: 'play-notice.pug',
|
|
})
|
|
export class PlayNotice {
|
|
readonly discordLink = discordLink;
|
|
readonly rules = GENERAL_RULES;
|
|
}
|