chore: fix naming
This commit is contained in:
parent
f19787f35a
commit
f1ac7ce77c
|
@ -17,7 +17,7 @@ interface ICreateChannelFailure extends Action {
|
|||
isTeam: boolean;
|
||||
}
|
||||
|
||||
export type TActionCreateApp = ICreateChannelRequest & ICreateChannelSuccess & ICreateChannelFailure;
|
||||
export type TActionCreateChannel = ICreateChannelRequest & ICreateChannelSuccess & ICreateChannelFailure;
|
||||
|
||||
export function createChannelRequest(data: any): ICreateChannelRequest {
|
||||
return {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { TActionSelectedUsers } from '../../actions/selectedUsers';
|
||||
import { TActionActiveUsers } from '../../actions/activeUsers';
|
||||
import { TActionApp } from '../../actions/app';
|
||||
import { TActionCreateApp } from '../../actions/createChannel';
|
||||
import { TActionCreateChannel } from '../../actions/createChannel';
|
||||
// REDUCERS
|
||||
import { IActiveUsers } from '../../reducers/activeUsers';
|
||||
import { ISelectedUsers } from '../../reducers/selectedUsers';
|
||||
|
@ -33,4 +33,4 @@ export interface IApplicationState {
|
|||
roles: any;
|
||||
}
|
||||
|
||||
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionApp & TActionCreateApp;
|
||||
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionApp & TActionCreateChannel;
|
||||
|
|
Loading…
Reference in New Issue