This commit is contained in:
crusader 2018-07-03 18:36:40 +09:00
parent 24034650a4
commit a2bd037b19
2 changed files with 6 additions and 6 deletions

View File

@ -17,20 +17,20 @@ export class MemberService {
} }
public signin(email: string, password: string): Observable<any> { public signin(email: string, pw: string): Observable<any> {
return this.restService.request<any>('post', '/account/signin', { return this.restService.request<any>('post', '/account/signin', {
body: { body: {
signinID: email, signinID: email,
signinPW: password, signinPW: pw,
}, },
}); });
} }
public signup(member: Member, password: string): Observable<Member> { public signup(member: Member, pw: string): Observable<Member> {
return this.restService.request<Member>('post', '/account/signup', { return this.restService.request<Member>('post', '/account/signup', {
body: { body: {
member: member, member: member,
password: password, pw: pw,
}, },
}); });
} }

View File

@ -5,9 +5,9 @@
export const environment = { export const environment = {
production: false, production: false,
restBaseURL: 'http://192.168.1.101:19080/webapp', restBaseURL: 'http://192.168.1.203:19080/webapp',
webappRPCConfig: { webappRPCConfig: {
url: 'ws://192.168.1.101:19090/webapp', url: 'ws://192.168.1.203:19090/webapp',
reconnectInterval: 5000, reconnectInterval: 5000,
reconnectRetry: 10, reconnectRetry: 10,
compressionThreshold: 4096, compressionThreshold: 4096,