-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #452 from sparcs-kaist/feature/user_remove_temp
feat(unregister): Add unregister with email smtp
- Loading branch information
Showing
15 changed files
with
403 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,4 @@ PORTAL_2FA_KEY=/[2-7A-Z]{16}/ | |
DOCKERHUB_USERNAME= | ||
DOCKERHUB_PASSWORD= | ||
SENTRY_DSN= | ||
PORTAL_JSESSIONID= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from django.core.management import BaseCommand | ||
|
||
from apps.core.management.scripts.portal_crawler import crawl_view | ||
|
||
|
||
class Command(BaseCommand): | ||
help = "포탈 공지글의 조회수를 크롤링합니다" | ||
|
||
def handle(self, *args, **options): | ||
crawl_view() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.