mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-27 18:45:50 +00:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
import Service from '@ember/service';
|
|
import users from 'wherehows-web/mirage/fixtures/users';
|
|
|
|
const [user] = users;
|
|
|
|
export default class extends Service {
|
|
currentUser = user;
|
|
load = () => Promise.resolve();
|
|
invalidateSession = () => {};
|
|
trackCurrentUser = () => {};
|
|
}
|