bug fixed

This commit is contained in:
richard-loafle 2020-04-03 11:46:48 +09:00
parent 6b6ebc29d4
commit ed7bc81c00
4 changed files with 18 additions and 6 deletions

4
package-lock.json generated
View File

@ -2373,8 +2373,8 @@
"dev": true "dev": true
}, },
"@ucap/ng-store-authentication": { "@ucap/ng-store-authentication": {
"version": "file:pack/ucap-ng-store-authentication-0.0.5.tgz", "version": "file:pack/ucap-ng-store-authentication-0.0.6.tgz",
"integrity": "sha512-ee4f9YqzCpmBu5YG9wnQXVtplkQwnG6IJaPHhwt8tXayW90PVq1Yxtn3SOOxNp/xCubTuSfJPo/kwcOF67bKug==" "integrity": "sha512-qP3+rsni/z/JOTR/VPjH+09buvHphJc4IHMSS+HlAFvJPeLcWXWChANzpUG3tWNxEbrh8GhaOlzYkGyqBJTVLA=="
}, },
"@ucap/ng-store-chat": { "@ucap/ng-store-chat": {
"version": "file:pack/ucap-ng-store-chat-0.0.4.tgz", "version": "file:pack/ucap-ng-store-chat-0.0.4.tgz",

View File

@ -165,7 +165,7 @@
"@ucap/ng-protocol-status": "file:pack/ucap-ng-protocol-status-0.0.1.tgz", "@ucap/ng-protocol-status": "file:pack/ucap-ng-protocol-status-0.0.1.tgz",
"@ucap/ng-protocol-sync": "file:pack/ucap-ng-protocol-sync-0.0.1.tgz", "@ucap/ng-protocol-sync": "file:pack/ucap-ng-protocol-sync-0.0.1.tgz",
"@ucap/ng-protocol-umg": "file:pack/ucap-ng-protocol-umg-0.0.1.tgz", "@ucap/ng-protocol-umg": "file:pack/ucap-ng-protocol-umg-0.0.1.tgz",
"@ucap/ng-store-authentication": "file:pack/ucap-ng-store-authentication-0.0.5.tgz", "@ucap/ng-store-authentication": "file:pack/ucap-ng-store-authentication-0.0.6.tgz",
"@ucap/ng-store-chat": "file:pack/ucap-ng-store-chat-0.0.4.tgz", "@ucap/ng-store-chat": "file:pack/ucap-ng-store-chat-0.0.4.tgz",
"@ucap/ng-store-group": "file:pack/ucap-ng-store-group-0.0.5.tgz", "@ucap/ng-store-group": "file:pack/ucap-ng-store-group-0.0.5.tgz",
"@ucap/ng-store-organization": "file:pack/ucap-ng-store-organization-0.0.3.tgz", "@ucap/ng-store-organization": "file:pack/ucap-ng-store-organization-0.0.3.tgz",

View File

@ -1,6 +1,6 @@
{ {
"name": "@ucap/ng-store-authentication", "name": "@ucap/ng-store-authentication",
"version": "0.0.5", "version": "0.0.6",
"publishConfig": { "publishConfig": {
"registry": "http://10.81.13.221:8081/nexus/repository/npm-ucap/" "registry": "http://10.81.13.221:8081/nexus/repository/npm-ucap/"
}, },

View File

@ -1,14 +1,26 @@
import { createReducer, on } from '@ngrx/store'; import { createReducer, on } from '@ngrx/store';
import { initialState } from './state'; import { initialState } from './state';
import { authSuccess } from './actions'; import { authSuccess, regViewSuccess } from './actions';
export const reducer = createReducer( export const reducer = createReducer(
initialState, initialState,
on(authSuccess, (state, action) => { on(authSuccess, (state, action) => {
return { return {
...state, ...state,
auth: action.res authResponse: {
...state.authResponse,
...action.res
}
};
}),
on(regViewSuccess, (state, action) => {
return {
...state,
regViewResponse: {
...state.regViewResponse,
...action.res
}
}; };
}) })
); );