blob: 95091ae091a6ef9fdd021c033da0928691800673 [file] [log] [blame]
import { REQUEST_ORG, RECEIVE_ORG, REQUEST_ORG_UPDATE, CONFIRM_ORG_UPDATE } from '../constants/ActionTypes';
export function fetchOrg () {
return { type : REQUEST_ORG };
}
export function receivedOrg (org) {
return { type : RECEIVE_ORG, org : org };
}
export function updateOrg (update) {
return { type : REQUEST_ORG_UPDATE, update : update };
}
export function confirmOrgUpdate (success) {
return { type : CONFIRM_ORG_UPDATE, saved : success };
}