16 lines
224 B
JavaScript
16 lines
224 B
JavaScript
|
import { SHARE } from './actionsTypes';
|
||
|
|
||
|
export function shareSelectServer(server) {
|
||
|
return {
|
||
|
type: SHARE.SELECT_SERVER,
|
||
|
server
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function shareSetUser(user) {
|
||
|
return {
|
||
|
type: SHARE.SET_USER,
|
||
|
user
|
||
|
};
|
||
|
}
|