Skip to content
Snippets Groups Projects
Commit 6152a57f authored by Sandro Lutz's avatar Sandro Lutz
Browse files

Add Error 401 page when unauthorized

parent 6dc27ec6
No related branches found
No related tags found
1 merge request!26Minor fixes for studydocs
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.');
}
}
import * as studydocs from '../models/studydocs';
import { apiUrl } from '../models/config';
import { isLoggedIn } from '../models/auth';
import { Error401 } from './errors';
const m = require('mithril');
......@@ -18,6 +20,8 @@ export default class studydocList {
}
static view() {
if (!isLoggedIn()) return m(Error401);
return m('div', [
m('form', {
onsubmit: (e) => {
......
// import Ajv from 'ajv';
import * as studydocs from '../models/studydocs';
// import { apiUrl } from '../models/config';
import { isLoggedIn } from '../models/auth';
import { log } from '../models/log';
import { Error401 } from './errors';
const m = require('mithril');
......@@ -25,6 +27,8 @@ export default class studydocNew {
}
view() {
if (!isLoggedIn()) return m(Error401);
return m('div', [
m('form', {
onsubmit: (e) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment