47 lines
719 B
JavaScript
47 lines
719 B
JavaScript
import * as types from '../constants/types';
|
|
import { APP } from './actionsTypes';
|
|
|
|
export function appReady() {
|
|
return {
|
|
type: APP.READY
|
|
};
|
|
}
|
|
|
|
export function appInit() {
|
|
return {
|
|
type: APP.INIT
|
|
};
|
|
}
|
|
export function setCurrentServer(server) {
|
|
return {
|
|
type: types.SET_CURRENT_SERVER,
|
|
payload: server
|
|
};
|
|
}
|
|
|
|
export function addSettings(settings) {
|
|
return {
|
|
type: types.ADD_SETTINGS,
|
|
payload: settings
|
|
};
|
|
}
|
|
export function setAllSettings(settings) {
|
|
return {
|
|
type: types.SET_ALL_SETTINGS,
|
|
payload: settings
|
|
};
|
|
}
|
|
|
|
export function setAllPermissions(permissions) {
|
|
return {
|
|
type: types.SET_ALL_PERMISSIONS,
|
|
payload: permissions
|
|
};
|
|
}
|
|
|
|
export function login() {
|
|
return {
|
|
type: 'LOGIN'
|
|
};
|
|
}
|