mirror of
https://github.com/plankanban/planka.git
synced 2025-12-26 09:15:01 +03:00
Update dependencies
This commit is contained in:
@@ -6,6 +6,7 @@ const initialState = {
|
||||
userId: null,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type, payload }) => {
|
||||
switch (type) {
|
||||
case ActionTypes.AUTHENTICATE__SUCCESS:
|
||||
|
||||
@@ -8,6 +8,7 @@ const initialState = {
|
||||
currentModal: null,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type, payload }) => {
|
||||
switch (type) {
|
||||
case LOCATION_CHANGE:
|
||||
|
||||
@@ -4,6 +4,7 @@ const initialState = {
|
||||
isDisconnected: false,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type }) => {
|
||||
switch (type) {
|
||||
case ActionTypes.SOCKET_DISCONNECT_HANDLE:
|
||||
|
||||
@@ -9,6 +9,7 @@ const initialState = {
|
||||
error: null,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type, payload }) => {
|
||||
switch (type) {
|
||||
case ActionTypes.AUTHENTICATE:
|
||||
|
||||
@@ -7,6 +7,7 @@ const initialState = {
|
||||
isSubmitting: false,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type, payload }) => {
|
||||
switch (type) {
|
||||
case ActionTypes.PROJECT_CREATE:
|
||||
|
||||
@@ -10,6 +10,7 @@ const initialState = {
|
||||
error: null,
|
||||
};
|
||||
|
||||
// eslint-disable-next-line default-param-last
|
||||
export default (state = initialState, { type, payload }) => {
|
||||
switch (type) {
|
||||
case ActionTypes.USER_CREATE:
|
||||
|
||||
Reference in New Issue
Block a user