File tree 8 files changed +25
-0
lines changed
8 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -158,3 +158,10 @@ cython_debug/
158
158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159
159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160
160
# .idea/
161
+ /.idea /inspectionProfiles /profiles_settings.xml
162
+ /.idea /inspectionProfiles /Project_Default.xml
163
+ /.idea /.gitignore
164
+ /.idea /drf_endpoint_examples.iml
165
+ /.idea /misc.xml
166
+ /.idea /modules.xml
167
+ /.idea /vcs.xml
Original file line number Diff line number Diff line change
1
+ from django .contrib import admin
2
+
3
+ # Register your models here.
Original file line number Diff line number Diff line change
1
+ from django .apps import AppConfig
2
+
3
+
4
+ class EndpointsConfig (AppConfig ):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'endpoints'
Original file line number Diff line number Diff line change
1
+ from django .db import models
2
+
3
+ # Create your models here.
Original file line number Diff line number Diff line change
1
+ from django .test import TestCase
2
+
3
+ # Create your tests here.
Original file line number Diff line number Diff line change
1
+ from django .shortcuts import render
2
+
3
+ # Create your views here.
You can’t perform that action at this time.
0 commit comments