Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CS699-Project
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Meet Narendra
CS699-Project
Commits
26404a14
Commit
26404a14
authored
Nov 21, 2022
by
Meet Narendra
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed extra apps
parent
b646a750
Changes
36
Show whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
0 additions
and
131 deletions
+0
-131
sitcomm/api/views.py
sitcomm/api/views.py
+0
-1
sitcomm/confluence/__init__.py
sitcomm/confluence/__init__.py
+0
-0
sitcomm/confluence/admin.py
sitcomm/confluence/admin.py
+0
-3
sitcomm/confluence/apps.py
sitcomm/confluence/apps.py
+0
-6
sitcomm/confluence/migrations/__init__.py
sitcomm/confluence/migrations/__init__.py
+0
-0
sitcomm/confluence/models.py
sitcomm/confluence/models.py
+0
-3
sitcomm/confluence/tests.py
sitcomm/confluence/tests.py
+0
-3
sitcomm/confluence/urls.py
sitcomm/confluence/urls.py
+0
-5
sitcomm/confluence/views.py
sitcomm/confluence/views.py
+0
-7
sitcomm/github/__init__.py
sitcomm/github/__init__.py
+0
-0
sitcomm/github/admin.py
sitcomm/github/admin.py
+0
-3
sitcomm/github/apps.py
sitcomm/github/apps.py
+0
-6
sitcomm/github/migrations/__init__.py
sitcomm/github/migrations/__init__.py
+0
-0
sitcomm/github/models.py
sitcomm/github/models.py
+0
-4
sitcomm/github/tests.py
sitcomm/github/tests.py
+0
-3
sitcomm/github/urls.py
sitcomm/github/urls.py
+0
-6
sitcomm/github/views.py
sitcomm/github/views.py
+0
-7
sitcomm/jira/Pipfile
sitcomm/jira/Pipfile
+0
-12
sitcomm/jira/__init__.py
sitcomm/jira/__init__.py
+0
-0
sitcomm/jira/admin.py
sitcomm/jira/admin.py
+0
-3
sitcomm/jira/apps.py
sitcomm/jira/apps.py
+0
-6
sitcomm/jira/migrations/__init__.py
sitcomm/jira/migrations/__init__.py
+0
-0
sitcomm/jira/models.py
sitcomm/jira/models.py
+0
-3
sitcomm/jira/tests.py
sitcomm/jira/tests.py
+0
-3
sitcomm/jira/urls.py
sitcomm/jira/urls.py
+0
-5
sitcomm/jira/views.py
sitcomm/jira/views.py
+0
-7
sitcomm/onestop/settings.py
sitcomm/onestop/settings.py
+0
-4
sitcomm/onestop/urls.py
sitcomm/onestop/urls.py
+0
-4
sitcomm/slack/__init__.py
sitcomm/slack/__init__.py
+0
-0
sitcomm/slack/admin.py
sitcomm/slack/admin.py
+0
-3
sitcomm/slack/apps.py
sitcomm/slack/apps.py
+0
-6
sitcomm/slack/migrations/__init__.py
sitcomm/slack/migrations/__init__.py
+0
-0
sitcomm/slack/models.py
sitcomm/slack/models.py
+0
-3
sitcomm/slack/tests.py
sitcomm/slack/tests.py
+0
-3
sitcomm/slack/urls.py
sitcomm/slack/urls.py
+0
-5
sitcomm/slack/views.py
sitcomm/slack/views.py
+0
-7
No files found.
sitcomm/api/views.py
View file @
26404a14
...
@@ -65,7 +65,6 @@ class getReposViewSet(views.APIView):
...
@@ -65,7 +65,6 @@ class getReposViewSet(views.APIView):
#print("Projects",Projects.objects.values())
#print("Projects",Projects.objects.values())
except
Exception
as
e
:
except
Exception
as
e
:
print
(
e
)
print
(
e
)
print
(
"Repos"
,
repos
)
return
Response
({
'repos'
:
repos
.
values
(),
'status'
:
True
})
return
Response
({
'repos'
:
repos
.
values
(),
'status'
:
True
})
except
:
except
:
return
Response
({
'status'
:
False
})
return
Response
({
'status'
:
False
})
...
...
sitcomm/confluence/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/confluence/admin.py
deleted
100644 → 0
View file @
b646a750
from
django.contrib
import
admin
# Register your models here.
sitcomm/confluence/apps.py
deleted
100644 → 0
View file @
b646a750
from
django.apps
import
AppConfig
class
ConfluenceConfig
(
AppConfig
):
default_auto_field
=
"django.db.models.BigAutoField"
name
=
"confluence"
sitcomm/confluence/migrations/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/confluence/models.py
deleted
100644 → 0
View file @
b646a750
from
django.db
import
models
# Create your models here.
sitcomm/confluence/tests.py
deleted
100644 → 0
View file @
b646a750
from
django.test
import
TestCase
# Create your tests here.
sitcomm/confluence/urls.py
deleted
100644 → 0
View file @
b646a750
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
confluence
,
name
=
'confluence'
),
]
sitcomm/confluence/views.py
deleted
100644 → 0
View file @
b646a750
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
confluence
(
request
):
return
HttpResponse
(
"Welcome to the confluence page"
)
# Create your views here.
sitcomm/github/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/github/admin.py
deleted
100644 → 0
View file @
b646a750
from
django.contrib
import
admin
# Register your models here.
sitcomm/github/apps.py
deleted
100644 → 0
View file @
b646a750
from
django.apps
import
AppConfig
class
GithubConfig
(
AppConfig
):
default_auto_field
=
"django.db.models.BigAutoField"
name
=
"github"
sitcomm/github/migrations/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/github/models.py
deleted
100644 → 0
View file @
b646a750
from
django.db
import
models
from
home.models
import
*
# Create your models here.
sitcomm/github/tests.py
deleted
100644 → 0
View file @
b646a750
from
django.test
import
TestCase
# Create your tests here.
sitcomm/github/urls.py
deleted
100644 → 0
View file @
b646a750
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
github
,
name
=
'github'
),
]
sitcomm/github/views.py
deleted
100644 → 0
View file @
b646a750
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
github
(
request
):
return
HttpResponse
(
"Welcome to the github page"
)
# Create your views here.
sitcomm/jira/Pipfile
deleted
100644 → 0
View file @
b646a750
[[source]]
url
=
"https://pypi.org/simple"
verify_ssl
=
true
name
=
"pypi"
[packages]
django
=
"*"
[dev-packages]
[requires]
python_version
=
"3.10"
sitcomm/jira/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/jira/admin.py
deleted
100644 → 0
View file @
b646a750
from
django.contrib
import
admin
# Register your models here.
sitcomm/jira/apps.py
deleted
100644 → 0
View file @
b646a750
from
django.apps
import
AppConfig
class
JiraConfig
(
AppConfig
):
default_auto_field
=
"django.db.models.BigAutoField"
name
=
"jira"
sitcomm/jira/migrations/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/jira/models.py
deleted
100644 → 0
View file @
b646a750
from
django.db
import
models
# Create your models here.
sitcomm/jira/tests.py
deleted
100644 → 0
View file @
b646a750
from
django.test
import
TestCase
# Create your tests here.
sitcomm/jira/urls.py
deleted
100644 → 0
View file @
b646a750
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
jira
,
name
=
'jira'
),
]
\ No newline at end of file
sitcomm/jira/views.py
deleted
100644 → 0
View file @
b646a750
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
jira
(
request
):
return
HttpResponse
(
"Welcome to the jira page"
)
# Create your views here.
sitcomm/onestop/settings.py
View file @
26404a14
...
@@ -37,11 +37,7 @@ INSTALLED_APPS = [
...
@@ -37,11 +37,7 @@ INSTALLED_APPS = [
"django.contrib.sessions"
,
"django.contrib.sessions"
,
"django.contrib.messages"
,
"django.contrib.messages"
,
"django.contrib.staticfiles"
,
"django.contrib.staticfiles"
,
'jira.apps.JiraConfig'
,
'confluence.apps.ConfluenceConfig'
,
'github.apps.GithubConfig'
,
'home.apps.HomeConfig'
,
'home.apps.HomeConfig'
,
'slack.apps.SlackConfig'
,
'corsheaders'
,
'corsheaders'
,
'rest_framework'
,
'rest_framework'
,
'api'
'api'
...
...
sitcomm/onestop/urls.py
View file @
26404a14
...
@@ -19,9 +19,5 @@ from django.urls import path,include
...
@@ -19,9 +19,5 @@ from django.urls import path,include
urlpatterns
=
[
urlpatterns
=
[
path
(
"admin/"
,
admin
.
site
.
urls
),
path
(
"admin/"
,
admin
.
site
.
urls
),
path
(
"home/"
,
include
(
'home.urls'
)),
path
(
"home/"
,
include
(
'home.urls'
)),
path
(
"github/"
,
include
(
'github.urls'
)),
path
(
"confluence/"
,
include
(
'confluence.urls'
)),
path
(
"slack/"
,
include
(
'slack.urls'
)),
path
(
"jira/"
,
include
(
'jira.urls'
)),
path
(
"api/"
,
include
(
'api.urls'
))
path
(
"api/"
,
include
(
'api.urls'
))
]
]
sitcomm/slack/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/slack/admin.py
deleted
100644 → 0
View file @
b646a750
from
django.contrib
import
admin
# Register your models here.
sitcomm/slack/apps.py
deleted
100644 → 0
View file @
b646a750
from
django.apps
import
AppConfig
class
SlackConfig
(
AppConfig
):
default_auto_field
=
"django.db.models.BigAutoField"
name
=
"slack"
sitcomm/slack/migrations/__init__.py
deleted
100644 → 0
View file @
b646a750
sitcomm/slack/models.py
deleted
100644 → 0
View file @
b646a750
from
django.db
import
models
# Create your models here.
sitcomm/slack/tests.py
deleted
100644 → 0
View file @
b646a750
from
django.test
import
TestCase
# Create your tests here.
sitcomm/slack/urls.py
deleted
100644 → 0
View file @
b646a750
from
django.urls
import
path
from
.
import
views
urlpatterns
=
[
path
(
''
,
views
.
slack
,
name
=
'slack'
),
]
\ No newline at end of file
sitcomm/slack/views.py
deleted
100644 → 0
View file @
b646a750
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
# Create your views here.
def
slack
(
request
):
return
HttpResponse
(
"Welcome to the slack page"
)
# Create your views here.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment