mirror of
https://github.com/voc/streaming-website
synced 2024-11-15 08:57:11 +00:00
ea4b6c7699
Conflicts: model/Overview.php model/Room.php model/StreamList.php tests/ModelTestbase.php
11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
class Feedback extends ModelBase
|
|
{
|
|
public function isEnabled() {
|
|
return $this->has('FEEDBACK');
|
|
}
|
|
public function getUrl() {
|
|
return 'feedback/';
|
|
}
|
|
}
|