|
@@ -1,5 +1,4 @@
|
|
|
import { Service } from '@tsed/di';
|
|
import { Service } from '@tsed/di';
|
|
|
-import { JsonRequestBody } from '@tsed/schema';
|
|
|
|
|
// import { parse } from '../../../slack/src/utils/slash-command-parser';
|
|
// import { parse } from '../../../slack/src/utils/slash-command-parser';
|
|
|
import { openModal } from '../../../slack/src/services/register';
|
|
import { openModal } from '../../../slack/src/services/register';
|
|
|
|
|
|
|
@@ -11,12 +10,10 @@ export class ReceiveService {
|
|
|
console.log(body);
|
|
console.log(body);
|
|
|
return this.register(body);
|
|
return this.register(body);
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
register(body) {
|
|
register(body) {
|
|
|
-
|
|
|
|
|
openModal(body);
|
|
openModal(body);
|
|
|
}
|
|
}
|
|
|
|
|
|