ember-emeis
Version:
The frontend for the emeis user management service
16 lines (12 loc) • 404 B
JavaScript
import Route from "@ember/routing/route";
import { service } from "@ember/service";
import { handleModelErrors } from "ember-emeis/-private/decorators";
export default class ScopesEditRoute extends Route {
notification;
intl;
store;
({ routeFor404: "scopes.index" })
model({ scope_id: id }) {
return this.store.peekRecord("scope", id);
}
}