diff --git a/src/scheduler/http/HttpApiUrl.ts b/src/scheduler/http/HttpApiUrl.ts new file mode 100644 index 0000000..b27bbb1 --- /dev/null +++ b/src/scheduler/http/HttpApiUrl.ts @@ -0,0 +1,42 @@ +export const HttpApiUrl = { + Account: { + base: '/account', + root: '/', + checkDuplication: '/check-duplication', + sendEmailVerificationCode: '/send-email-verification-code', + verifyEmailVerificationCode: '/verify-email-verification-code', + sendResetPasswordCode: '/send-reset-password-code', + verifyResetPasswordCode: '/verify-reset-password-code', + resetPassword: '/reset-password', + signup: '/signup', + login: '/login', + refreshToken: '/refresh-token' + }, + Schedule: { + base: '/schedule', + getList: '/', + getDetail: '/:id', + create: '/create', + update: '/update', + delete: '/delete' + }, + follow: { + base: '/follow', + getList: '/', + followUser: '/follow-user', + unfollowUser: '/unfollow-user' + }, + comment: { + base: '/comment', + create: '/create', + update: '/update', + delete: '/delete' + }, + notification: { + base: '/notification', + getList: '/', + getDetail: '/:id', + read: '/read', + delete: '/delete' + } +} \ No newline at end of file