8f80aefe55d0042d7fd55aab0ad5c3c3e8af0c3c,app/grandchallenge/reader_studies/urls.py,,,#,16
Before Change
app_name = "reader-studies"
urlpatterns = [
path("", ReaderStudyList.as_view(), name="list"),
path("create/", ReaderStudyCreate.as_view(), name="create"),
path(
"users-autocomplete/",
ReaderStudyUserAutocomplete.as_view(),
name="users-autocomplete",
),
path("<slug>/", ReaderStudyDetail.as_view(), name="detail"),
path("<slug>/update/", ReaderStudyUpdate.as_view(), name="update"),
path(
"<slug>/images/add/",
AddImagesToReaderStudy.as_view(),
name="add-images",
),
path(
"<slug>/questions/add/",
AddQuestionToReaderStudy.as_view(),
name="add-question",
),
path(
"<slug>/questions/<pk>/update/",
QuestionUpdate.as_view(),
name="question-update",
),
path(
"<slug>/editors/update/",
EditorsUpdate.as_view(),
name="editors-update",
),
path(
"<slug>/readers/update/",
ReadersUpdate.as_view(),
name="readers-update",
),
]
After Change
app_name = "reader-studies"
urlpatterns = [
path("", ReaderStudyList.as_view(), name="list"),
path("create/", ReaderStudyCreate.as_view(), name="create"),
path(
"users-autocomplete/",
ReaderStudyUserAutocomplete.as_view(),
name="users-autocomplete",
),
path("<slug>/", ReaderStudyDetail.as_view(), name="detail"),
path("<slug>/update/", ReaderStudyUpdate.as_view(), name="update"),
path("<slug>/delete/", ReaderStudyDelete.as_view(), name="delete"),
path(
"<slug>/images/add/",
AddImagesToReaderStudy.as_view(),
name="add-images",
),
path(
"<slug>/questions/add/",
AddQuestionToReaderStudy.as_view(),
name="add-question",
),
path(
"<slug>/questions/<pk>/update/",
QuestionUpdate.as_view(),
name="question-update",
),
path(
"<slug>/editors/update/",
EditorsUpdate.as_view(),
name="editors-update",
),
path(
"<slug>/readers/update/",
ReadersUpdate.as_view(),
name="readers-update",
),
]
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 10
Instances
Project Name: comic/grand-challenge.org
Commit Name: 8f80aefe55d0042d7fd55aab0ad5c3c3e8af0c3c
Time: 2019-12-02
Author: 57257130+MikeOverkamp-diag@users.noreply.github.com
File Name: app/grandchallenge/reader_studies/urls.py
Class Name:
Method Name:
Project Name: chakki-works/doccano
Commit Name: 44574220907c2ec2de16cba2131738fd1da4d0fe
Time: 2020-11-30
Author: light.tree.1.13@gmail.com
File Name: app/app/urls.py
Class Name:
Method Name:
Project Name: comic/grand-challenge.org
Commit Name: ab55fefaf4e5585a6fdbf5fee840cd6ae0c91518
Time: 2019-03-25
Author: code@jmsmkn.com
File Name: app/grandchallenge/workstations/urls.py
Class Name:
Method Name: