mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
35 lines
868 B
JavaScript
35 lines
868 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
import ApplicationFetcher from '../fetchers/application_fetcher';
|
|
|
|
|
|
class ApplicationActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'updateApplications'
|
|
);
|
|
}
|
|
|
|
fetchApplication() {
|
|
ApplicationFetcher.fetch()
|
|
.then((res) => {
|
|
this.actions.updateApplications(res.applications);
|
|
})
|
|
.catch((err) => {
|
|
console.logGlobal(err);
|
|
});
|
|
}
|
|
refreshApplicationToken(applicationName) {
|
|
ApplicationFetcher.refreshToken(applicationName)
|
|
.then((res) => {
|
|
this.actions.updateApplications(res.applications);
|
|
})
|
|
.catch((err) => {
|
|
console.logGlobal(err);
|
|
});
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(ApplicationActions);
|