From 69325a79513cc4cde76e3213177af2a2e9495490 Mon Sep 17 00:00:00 2001 From: crusader Date: Wed, 27 Sep 2017 20:02:25 +0900 Subject: [PATCH] ing --- .../noauthprobe/api/service/NoAuthProbeService.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/ts/@overflow/noauthprobe/api/service/NoAuthProbeService.ts b/src/ts/@overflow/noauthprobe/api/service/NoAuthProbeService.ts index a88ae18..bea962a 100644 --- a/src/ts/@overflow/noauthprobe/api/service/NoAuthProbeService.ts +++ b/src/ts/@overflow/noauthprobe/api/service/NoAuthProbeService.ts @@ -1,19 +1,16 @@ import { Service } from '@overflow/commons/api/service'; import NoAuthProbe from '../model/NoAuthProbe'; import Action from '@overflow/commons/redux/Action'; +import * as AcceptActions from '../../redux/action/accept'; export class NoAuthProbeService extends Service { - // tslint:disable-next-line:no-empty public constructor() { super(); } public regist(params: any): void { const noAuthProbe: NoAuthProbe = JSON.parse(params); - const action: Action = { - type: 'TEST', - }; - this.dispatch('TEST', noAuthProbe); + this.dispatch(AcceptActions.REQUEST, noAuthProbe); } }