Skip to content
Snippets Groups Projects

Minor fixes for studydocs

Merged Sandro Lutz requested to merge studydocs into master
3 files
+ 26
5
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 13
0
const m = require('mithril');
export class Error401 {
static view() {
return m('div', 'This page is only accessible for authenticated users. Please log in.');
}
}
export class Error404 {
static view() {
return m('div', 'This page does not exist.');
}
}
Loading