Package of overFlow has been changed.

This commit is contained in:
crusader
2017-07-03 19:21:42 +09:00
parent 63b55c02ad
commit 87365ba7c8
370 changed files with 195 additions and 113 deletions

View File

@@ -0,0 +1,11 @@
import Member from '@overflow/member/api/model/Member';
interface EmailAuth {
id: number;
emailAuthKey: string;
createDate: Date;
authConfirmDate: Date;
member: Member;
}
export default EmailAuth;

View File

@@ -0,0 +1,18 @@
import Service from '@overflow/commons/api/Service';
import EmailAuth from '../model/EmailAuth';
class EmailAuthService extends Service {
public constructor() {
super('EmailAuthService');
}
public sendEmail(to: string, sub: string, message: string): void {
return null;
}
}
export default EmailAuthService;

View File