12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
import Controller from '@ember/controller';
|
|
import sjcl from 'sjcl';
|
|
|
|
export default class PollErrorController extends Controller {
|
|
get decryptionFailed() {
|
|
return this.model instanceof sjcl.exception.corrupt;
|
|
}
|
|
|
|
get notFound() {
|
|
return this.model.errors.firstObject.status === '404';
|
|
}
|
|
}
|