DS.UnauthorizedError

DS.UnauthorizedError Class

Defined in: addon/adapters/errors.js:229

Module: ember-data

A DS.UnauthorizedError equates to a HTTP 401 Unauthorized response status. It is used by an adapter to signal that a request to the external API was rejected because authorization is required and has failed or has not yet been provided.

An example use case would be to redirect the user to a log in route if a request is unauthorized:

app/routes/application.js
import Ember from 'ember';
import DS from 'ember-data';

const { UnauthorizedErro