export function signinUser({ username, password }, history, callback) {
    return function(dispatch) {
        axios
            .post(`${ROOT_URL + BASE_URL}/tokens/users`, { username, password })
            .then(function(response) {