Skip to content

Commit

Permalink
resolve conflict: whiel rebase on master
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin9038 committed Apr 1, 2022
1 parent 148ce9a commit 5b22513
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 26 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.2.12 on 2022-03-02 05:13
# Generated by Django 3.2.12 on 2022-03-02 06:08

from django.db import migrations, models
import django.db.models.deletion
Expand All @@ -7,7 +7,7 @@
class Migration(migrations.Migration):

dependencies = [
('contest', '0012_rename_total_score_acmcontestrank_total_penalty'),
('contest', '0013_contestannouncement_problem'),
]

operations = [
Expand Down
18 changes: 0 additions & 18 deletions backend/submission/migrations/0015_submission_title.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 3.2.12 on 2022-02-10 10:37
# Generated by Django 3.2.12 on 2022-03-02 06:08

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('submission', '0013_auto_20211030_1535'),
('submission', '0016_auto_20211226_1458'),
]

operations = [
Expand All @@ -15,4 +15,9 @@ class Migration(migrations.Migration):
name='code_length',
field=models.IntegerField(default=0),
),
migrations.AddField(
model_name='submission',
name='title',
field=models.TextField(null=True),
),
]
2 changes: 1 addition & 1 deletion backend/submission/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .views import (SubmissionAPI, SubmissionListAPI, ContestSubmissionListAPI, AssignmentSubmissionListAPI,
AssignmentSubmissionListProfessorAPI, SubmissionExistsAPI, EditSubmissionScoreAPI)
from .views import ProfileSubmissionListAPI, SubmissionAPI, SubmissionListAPI, ContestSubmissionListAPI, SubmissionExistsAPI
from .views import ProfileSubmissionListAPI

urlpatterns = [
path("submission/", SubmissionAPI.as_view(), name="submission_api"),
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/pages/oj/router/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ import {
LectureAssignmentDetail,
LectureQna,
LectureQnaDetail,
Profile,
ProfileContest
Profile
} from '../views'

export default [
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/oj/views/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export {
ApplyResetPassword, ResetPassword, EmailAuth, ProfileSetting,
ContestList, ContestDetail, ContestProblemList, ContestRanking, Register,
LectureList, LectureDashboard, LectureAssignmentList, LectureAssignmentDetail, LectureQna, LectureQnaDetail,
Profile, ProfileContest
Profile
}
/* 구성 요소 내보내기는 두 가지 범주로 나뉩니다.
* 하나는 일반적으로 직접 내보내기에 사용되며
Expand Down

0 comments on commit 5b22513

Please sign in to comment.