mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-25 02:44:18 +00:00
Codestyle
This commit is contained in:
parent
b3f34648c4
commit
9d30dda733
@ -7,13 +7,14 @@ class JobStatusNotifier {
|
|||||||
let filteredPatch;
|
let filteredPatch;
|
||||||
let jobId;
|
let jobId;
|
||||||
let match;
|
let match;
|
||||||
|
let operation;
|
||||||
let re;
|
let re;
|
||||||
|
|
||||||
re = new RegExp(`^/users/${this.userId}/jobs/([A-Za-z0-9]*)/status$`)
|
re = new RegExp(`^/users/${this.userId}/jobs/([A-Za-z0-9]*)/status$`)
|
||||||
filteredPatch = patch
|
filteredPatch = patch
|
||||||
.filter(operation => operation.op === 'replace')
|
.filter(operation => operation.op === 'replace')
|
||||||
.filter(operation => re.test(operation.path));
|
.filter(operation => re.test(operation.path));
|
||||||
for (let operation of filteredPatch) {
|
for (operation of filteredPatch) {
|
||||||
[match, jobId] = operation.path.match(re);
|
[match, jobId] = operation.path.match(re);
|
||||||
app.flash(`[<a href="/jobs/${jobId}">${app.users[this.userId].jobs[jobId].title}</a>] New status: ${operation.value}`, 'job');
|
app.flash(`[<a href="/jobs/${jobId}">${app.users[this.userId].jobs[jobId].title}</a>] New status: ${operation.value}`, 'job');
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user