Hawk/src/js/actions/pick.js
Mahdi Dibaiee 18652ed5dc feat share: Ability to share files using Web Activities
feat pick: Ability to pick files for other apps
2015-09-07 15:18:53 +04:30

16 lines
206 B
JavaScript

import { PICK } from 'actions/types';
export function enable(request) {
return {
type: PICK,
active: request
}
}
export function disable() {
return {
type: PICK,
active: false
}
}