Implement basic settings page

This commit is contained in:
Toby Zerner
2015-07-29 21:00:09 +09:30
parent d71d8f59c2
commit f96cac6057
13 changed files with 313 additions and 17 deletions

View File

@ -1,3 +1,7 @@
import Model from 'flarum/Model';
export default class Forum extends Model {}
export default class Forum extends Model {
apiEndpoint() {
return '/forum';
}
}