-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpii-ner-exclude.txt
2194 lines (2194 loc) · 41.7 KB
/
pii-ner-exclude.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
PUB
ref
" Returns the mime type for this file
Create an OpenSearch
0.0.0.0:8000
+ Deleting
MASTER_ADMIN_PASSWORD
case/{CASE_UUID}/` Shortcut
Completed S3
Marks
+ Updating System
assign 'Organisation User'
+ Getting
TR
parameters.json
+ Deleting workflow
GET /organisations/` Return
created_as_type
" Approve
JSON
LOA_contact_id
SHELL
COLOUR_NONE=\033[0m
SHELL
COLOUR_NONE=\033[0m
requirements-dev.txt
restore_dependency_cache
save_dependency_cache
cimg/python:3.9.5
Run Flake8
requirements-dev.txt
restore_dependency_cache
save_dependency_cache
cimg/python:3.9.5
Run Flake8
" Pass in some sql
Disable App Nap
Annotate AST
4.0.3
asyncio
Classes Without Boilerplate
zoneinfo
The AWS SDK for Python
1.0.3
Distributed Task Queue
kombu
pyro4
Mozilla
CA Bundle
1.16.0
Foreign Function Interface for Python
The Real First Universal Charset Detector
Chardet
0.3.0
CLI
0.4.6
0.1.5
HSL
RVB
X11
5.1.1
1.2.14
Django Application
1.0.6
1.9.2
Extensions for Django
mkdocs
jinja2
A Django
ECS
Cache
0.15.2
Turn your API
Django REST Framework(DRF
0.6.2
Pythonic
pep8
Official Python
the Geckoboard Datasets API
\"win32\
Simple Python
Graphviz
Internationalized Domain Names in Applications
6.8.0
zipp
Julian
Gregorian
Pygments (==
urllib3
JSON Matching Expressions
Cassowary
Elasticsearch Common Schema
Powerful and Pythonic XML
libxml2
beautifulsoup4
Cython
HTML/XML
0.1.6
Inline Matplotlib
Jupyter
flake8
Minio Python Library
OpenDocument
3.0.6
A Python
A Python Parser
0.11.2
Google
0.7.5
pybind11
attrs
Python Imaging Library (Fork
\"user
3.0.41
Library for building powerful interactive command lines
1.0.2
0.2.2
AST
JSON Web Token
Parser-Interpreter for Python
pflake8
0.7.4
Microsoft
0.6.18
Humans
falcon
0.16.0
SQL
0.0.10
Python Port of John Gruber's
the Public Suffix List
PSL
ICANN
the Public Suffix List's
0.10.2
Python Library for Tom's Obvious, Minimal Language
Traitlets Python
Backported and Experimental Type Hints for Python
pyOpenSSL
0.0.0
0.2.12
xlrd
Microsoft Excel
Interfaces for Python
88e29a02a6f5c92a4ecad6bb5f1d401fbc870186dc2b65b8287a8dc00c2ca138
Chris
https://github.com/uktrade/trs_v2_api_client.git
\.git
\.mypy_cache
max-line
D100
D104
W504
F405
W605
max-complexity
darwin
asttokens==2.4.1
atomicwrites==1.4.1
backcall==0.2.0
botocore==1.20.112
certifi==2023.11.17
charset-normalizer==3.3.2
click-didyoumean==0.3.0
click-plugins==1.1.1
click-repl==0.3.0
click==8.1.7
contourpy==1.1.0
dotwiz==0.4.0
executing==2.0.1
greenlet==3.0.1
importlib-metadata==6.8.0
importlib-resources==6.1.1
ipython==8.13.0
jedi==0.19.1
kombu==5.3.4
mypy-extensions==1.0.0
pexpect==4.8.0
pluggy==1.3.0
ptyprocess==0.7.0
3.11.0a6
vine==5.1.0
pillow>=10.0.1
TARIFF_CLASSIFICATION
csv format
AS0022
0557bf4a-3d2b-4e66-b392-1d5e172bd7d7*Engine
VE TICARET LTD
Contacts
OPTIONAL
Contact or Organisation
Contacts
OPTIONAL
Contact or Organisation
Contacts
OPTIONAL
Contact or Organisation
PUBLIC
DocumentSerializer
PUBLIC
"Returns the extension
"Returns the truncated document name
e.g. super_long_document_name_this_is_ridiculous.pdf
"Returns the size of the document
PUBLIC
"Returns the extension
"Returns the truncated document name
e.g. super_long_document_name_this_is_ridiculous.pdf
"Returns the size of the document
PUBLIC
"Returns the extension
"Returns the truncated document name
e.g. super_long_document_name_this_is_ridiculous.pdf
"Returns the size of the document
f"{int(instance.size)/(1<<10):,.0f
" Returns the organisation case role
core.models
" Add a document
Builds
" Notify the contact about this submission using the given template :param core.
the System Parameters
" Notify the contact about
"Returns the extension
"Returns the truncated document name
e.g. super_long_document_name_this_is_ridiculous.pdf
Test Case
core.models
" Add a document
Builds
" Notify the contact about this submission using the given template :param core.
the System Parameters
" Notify the contact about
core.models
" Add a document
Builds
" Notify the contact about this submission using the given template :param core.
the System Parameters
" Notify the contact about
Awaiting Approval
organisation_user.user.email
AUDIT_TYPE_NOTIFY
" Allows
HTTP_AUTHORIZATION
" Store the start time
Calculate
Bilateral Safeguards Review
BSG
RatelimitMiddleware
The Health Check
"Check
FeatureFlag
Group.user_set.add(request.user
API V2
PaaS
LocMemCache
API V2 - ViewSet
Set the `.action
f"API V2 - {self.action}
f"API V2 - ViewSet
V1 - Case(s
V1 - Case
TODO-V2
ROI
f"Feature Flag Group
e.g
the User/Group
V1 - User
" Creates and returns a new registration of interest submission for the given user and organisation
" Creates and returns a new registration of interest submission for the given user and organisation
Test the DRF
PasswordSerializer
Simulate the request.data
Test Name
TwoFactorAuthRequestSerializer
TwoFactorAuthVerifySerializer
Get User
self.initial_data
QueryDicts
SMS
Authentication View
Perform Authentication
Request
" Sends a 2fa code
Verifies a 2fa
2fa_code
Verifies
"Django settings for
Sentry
SessionMiddleware
django.middleware.common
CommonMiddleware
AuthenticationMiddleware
MessageMiddleware
AxesMiddleware
BACKEND
VCAP_SERVICES
ContainsSpecialChar
http://localhost:8001
RedisCache
DefaultClient
IP
Axes
OPENSEARCH HOST
doc_type
ROOT_LOG_LEVEL
TODO-V2:
AWS
boto3
expiry
SOS
FEATURE_FLAG
AUDIT COPY EMAILS
AUDIT_EMAIL_TO_ADDRESS
"Django settings for
Sentry
SessionMiddleware
django.middleware.common
CommonMiddleware
AuthenticationMiddleware
MessageMiddleware
AxesMiddleware
BACKEND
VCAP_SERVICES
ContainsSpecialChar
http://localhost:8001
RedisCache
DefaultClient
IP
Axes
OPENSEARCH HOST
doc_type
ROOT_LOG_LEVEL
TODO-V2:
AWS
boto3
expiry
SOS
FEATURE_FLAG
AUDIT COPY EMAILS
AUDIT_EMAIL_TO_ADDRESS
"trade_remedies_api URL Configuration The `
API_PREFIX}/health/
case_id>/
request_email_verify
XML
Cache-Control
Return a Notification
TRADE_REMEDIES_EMAIL
Cache-Control
parts/
Installer
htmlcov/
.cache
db.sqlite3
NER
SR
SA
GET
GET /case/{CASE_ID}/` Return
ex_oficio
" Create a "Register
GET /cases/{ORGANISATION_ID}/
GET /cases/{ORGANISATION_ID}/{CASE_ID}/submissions/` Return
CURRENT_STAGE
"Returns the available review types
Suspension Extension
SN
ER
SA
SN
Suspension Extension
SN
Suspension Extension
SN
SR
SA
GET
GET /case/{CASE_ID}/` Return
ex_oficio
" Create a "Register
GET /cases/{ORGANISATION_ID}/
GET /cases/{ORGANISATION_ID}/{CASE_ID}/submissions/` Return
CURRENT_STAGE
"Returns the available review types
Serializes DuplicateOrganisationMerge
"Returns the order of this duplicate in the parent organisation along
Serializes OrganisationMergeRecord
Serializes DuplicateOrganisationMerge
"Returns the order of this duplicate in the parent organisation along
Serializes OrganisationMergeRecord
submission_object.remove_document(child_document, requested_by=request.user
OrganisationMergeRecord
" Annotate a queryset
Parameters
https
" Returns True if the organisation name matches the name on Companies House
" Returns a dictionary
does_name_match_companies_house
In Progress
assert len(first_page_organisations["results
GB123456788
Test Address 1
ADDY
"Fake Address
GB123456789012
111111111
LD123
Passing a submission_id query parameter
urllib3==1.26.11
Macintosh
Intel Mac
KHTML
Gecko
id="fyUUEr3ISpw4vq9QRarz" name="Page-2">7Z1tc9q4FoB/DbOfwvgd+JhA0nQ33aYlc3t7v3SELUCNbbm2CGF//T2SZVt+gWBCErI1mUzwsSzL0tGjc3Qkp2eOg8cPMYqWn6iH/Z6heY89c9IzDNN2TPjDJZtUYulOKljExEtFeiGYkn+wFGpSuiIeTkoJGaU+I1FZ6NIwxC4ryVAc03U52Zz65btGaIFrgqmL
cu99+GcMza0/n6AU8n7OhPSxj1TGNw1yf6spJrYrd14xkFjbyVLTqc0zk0ha1kk2cTwGJKXcNQ5
oYpGHZVvx83YDwzmP
HTML
Update ADR
Session
Remote User
Use Django
Model Views
REST API
Django Graphene](https://pypi.org
send_mail.called_with
company_vat_number
" Creates a new user object and all the relevant satellite objects (
User.objects.create
" Generate
" Creates and saves a User
INSTANCE
" Creates and saves a superuser
" Toggles the given role name
" Take a list of {caseid, primary}
Return a JSON
" Remove a
User.objects.all().order_by('created_at
" Returns the user's auth token
" Hold the required information
"Generate a 2FA code
2FA_CODE_MESSAGE
f"Password
" Performs a password
Number
" Loads a system param spec
Return a Notification
TRADE_REMEDIES_EMAIL
" Creates a new user object and all the relevant satellite objects (
User.objects.create
" Generate
" Creates and saves a User
INSTANCE
" Creates and saves a superuser
" Toggles the given role name
" Take a list of {caseid, primary}
Return a JSON
" Remove a
User.objects.all().order_by('created_at
" Returns the user's auth token
" Hold the required information
"Generate a 2FA code
2FA_CODE_MESSAGE
f"Password
" Performs a password
Number
" Loads a system param spec
send_mail.called_with
company_vat_number
Return a Notification
TRADE_REMEDIES_EMAIL
Once a 3rd party
"trade_remedies_api URL Configuration The `
API_PREFIX}/health/
case_id>/
request_email_verify
"trade_remedies_api URL Configuration The `
API_PREFIX}/health/
case_id>/
request_email_verify
Invite 3rd
Overrides the django-restql DynamicFieldsMixin
ALWAYS
" A Serializer
" Dict of native values <- Dict
.validate
SELECT
uc2.case_id
cc1 join contacts_casecontact cc2 on cc1.organisation_id='{organisation.id}' and cc2.organisation_id = '
Select Country
SELECT
uc2.case_id
cc1 join contacts_casecontact cc2 on cc1.organisation_id='{organisation.id}' and cc2.organisation_id = '
Select Country
celery==5.2.2
django==3.2.17
gevent==21.12.0
odfpy==1.4.1
whitenoise==5.3.0
"trade_remedies_api URL Configuration The `
case_id>/
request_email_verify
API_PREFIX}/health/
XML
SELECT
self.assertEqual(status
Return a Notification
TRADE_REMEDIES_EMAIL
Cache-Control
parts/
Installer
htmlcov/
.cache
db.sqlite3
NER
SR
SA
GET
GET /case/{CASE_ID}/` Return
ex_oficio
" Create a "Register
GET /cases/{ORGANISATION_ID}/
GET /cases/{ORGANISATION_ID}/{CASE_ID}/submissions/` Return
CURRENT_STAGE
"Returns the available review types
available_review_types = self.notice.available_case_review_types
Notice and Case
TRS
Args
" Load a case
ex_oficio
Case Created
action_obj
" Returns True if the organisation
CASE_REGISTRATION_DURATION
" Note: This is potentially
TR-2046
Assign a TRA
" Remove a user (team member
" Check the case
Notice and Case
TRS
Args
" Load a case
ex_oficio
Case Created
action_obj
" Returns True if the organisation
CASE_REGISTRATION_DURATION
" Note: This is potentially
TR-2046
Assign a TRA
" Remove a user (team member
" Check the case
Suspension Extension
SN
ER
SA
deficiency_notice_params
" ModelViewSet for interacting with
" Deletes the user
get_user_by_email
" ModelViewSet for interacting with contact objects via the API
"ModelViewSet for interacting with TwoFactorAuth objects
alpha3
TRS
parts/
Installer
htmlcov/
.cache
db.sqlite3
NER
Validate
InvitationFailure
PUBLIC_ROOT_URL}/invitation/{invite.code}/for/{organisation.id}/
"Send the invite
Keyword
NOTIFY_INFORM_INTERESTED_PARTIES
PUBLIC_ROOT_URL}/invitation/{self.code}/{self.case.id}/
" Assign the user
Assign Organisation User
" Creates and returns a new registration of interest
Assign the invitee
Validate
InvitationFailure
PUBLIC_ROOT_URL}/invitation/{invite.code}/for/{organisation.id}/
"Send the invite
Keyword
NOTIFY_INFORM_INTERESTED_PARTIES
PUBLIC_ROOT_URL}/invitation/{self.code}/{self.case.id}/
" Assign the user
Assign Organisation User
" Creates and returns a new registration of interest
Assign the invitee
parts/
Installer
htmlcov/
.cache
db.sqlite3
NER
alpha3
TRS
Update
GET
" ModelViewSet for interacting with
" Deletes the user
get_user_by_email
" ModelViewSet for interacting with contact objects via the API
"ModelViewSet for interacting with TwoFactorAuth objects
commas
IDE
self.confidential_document.refresh_from_db
self.confidential_submission_document.refresh_from_db
self.non_confidential_document.refresh_from_db
assert str(self.non_confidential_document.parent.id
DB
assert send_mail.called_with
ENV
date_to
verbose_rating_name
verbose_what_didnt_go_so_well
DuplicateCondition
"Returns the URL of the org's
0020_invitation_rejected_by
Own Organisation'
Invite Third Party'
NOTIFY_INFORM_INTERESTED_PARTIES_V2
new_user
NOTIFY_INFORM_INTERESTED_PARTIES_V2
new_user
0020_invitation_rejected_by
Own Organisation'
Invite Third Party'
NOTIFY_INFORM_INTERESTED_PARTIES_V2
new_user
Own Organisation'
accept_invite/{invitation_object.id}/start/
NOTIFY_INFORM_INTERESTED_PARTIES_V2
new_user
Trade Remedies Service'
LITE
"Testing that the smtp connection can be
AUDIT_EMAIL_SMTP_PASSWORD
AUDIT_EMAIL_SMTP_PORT
MIME
Amazon SES
AUDIT_EMAIL_RETRY_COUNTDOWN
Amazon
new_testpassword123!DD
NEW
is_active Returns
PUBLIC_ROOT_URL}/case/accept_representative_invite/
django-restql==0.15.2
the rep organisation is
add_user
v2
no_representative_org
invite_new_representative_no_contact_email
requesting_user
A Serializer
Drop
get_user_by_email"
"Endpoint
the QueryDict mutable
file_has_virus
API_V2_PREFIX}/organisation_case_roles
Jack
EmailSerializer
EmailAvailabilitySerializer
" Normal (not model
CoreConfig
Custom ResponseRenderer
user_pk
Flag Group
FLAGS
EmailSerializer
EmailAvailabilitySerializer
DUNS
Email Verified"
New User Created
EORI
VAT
NO_USER_AGENT
f"Order
Health Check
Super-Secret-Password1
the GOV.UK Test Number
mobile_country_code
uk_employer
new_case_role
Custom Axes Authentication
DELETE
Log Out
'Log Out'
Log Out'
TwoFactor
CustomValidationError
r"(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$
Log In Failed
SECONDS
ValidationExceptions
ValidationErrors
Raises CustomValidationErrors
DELETE
Log Out
Log In Failed
Password Reset
Password Reset Failed
ValidationExceptions
ValidationErrors
r"(^+@+\.+$
CustomValidationError
assert app.label
"Trade Remedies Authentication
Authentication V2
EmailVerification
EmailVerificationAdmin(admin
Create User
"Create Super User
"User Model
E304
APIException
Serializer
TrustedTokenSerializer
"Trusted Auth Token Serializer
label=_("Two Factor Token
Email Verification Code Serializer
TWO_FACTOR_MAX_ATTEMPTS
"Authentication App
TokenAuthentication
Custom Token Authentication
AuthenticationFailed
ANON_USER_TOKEN
Public/CW
ELK
Grafana
do_login
login_data
response.json()["token
fake_user
assert response_data["token
two_factor_data
Bad Request
valid_minutes_2fa_token
# Post
test_2fa_resend(fake_user
actual_user_data
assert response.json()["2fa
anon_user_data
assert response.json()["username
test_auth_token_expired(fake_user
assert authorised_api_client.get("/api
v2/auth/users/").status_code
serializer
https://github.com/yezyilomo/django-restql/
doc.id
Django==2.2.25
FeatureFlags
get_param
doc = load(document.file
\n
TOML
py37
UserContext
UserContextTest(TestCase
assert isinstance(as_user_context
assert
assert as_none
assert as_user_context.user.id =
datetime(2019
self.case.refresh_from_db
self.assertEqual(updated_status.ack_at
DLL
env/
var/
PyInstaller
# Installer
pip-delete-this-directory.txt
local_settings.py
Scrapy
Sphinx
PyBuilder
Jupyter Notebook
ENV/
# Rope
# Mac
Organisation
AttributeError
f"User
core.services.base
ResponseSuccess
audit.models import
Audit
get_case
QuerysetExporter
case_id
param
HTTPRequest
created_by
AuditTrailExport(TradeRemediesApiView
Generate
@staticmethod
QuerysetExport
NotifyAuditReport(TradeRemediesApiView
Acknowledge
audit_id
audit =
get_role
CaseRole
Group
DocumentBundle
invitation_id
TRA
contact_id
contact.has_user
NotFoundApiExceptions("No
InviteThirdPartyAPI(TradeRemediesApiView
build_submission(request_user
Case Third Party
New Third Party
case_bundle = DocumentBundle.objects.filter
request_data
Build Third Party
contact.load_attributes(request_data
Organisation.objects.create
"Update the Third Party Invitee's
Invitee
organisation").get(id
invite.to_dict
UserInvitations(TradeRemediesApiView
Django 2.0.1
name="case_role
@method_cache
boto3==1.17.88
celery==4.4.0
colour==0.1.5
django-appconf==1.0.4
django-countries==5.5
django-dirtyfields==1.7.0
django-redis==4.10.0
docopt==0.6.2
et-xmlfile==1.1.0
openpyxl
freezegun==1.1.0
jdcal==1.4.1
pyjwt==2.1.0
vine==1.3.0
# amqp
werkzeug==0.15.3
SmallIntegerField(default=0
LoadExtension
# LoadExtension('pg_trgm'
OrganisationUser
Group, Permission
GROUPS
# Setup/Bootsrapping
Permission
exc_info
BaseWriter
ExcelWriter(BaseWriter
Excel
Workbook
"Write a single row to the spreadsheet
REJECTED_ORG_CASE_ROLE
SystemParameter
# Set
# Set cookie
JS
CRSF
# Set anti XSS
AUDIT_LOG_USER_FIELD
the X-Frame-Options
DENY
NullBooleanField
ImportError
exc
PYTHONPATH
django.contrib import
ModelAdmin
DocumentAdmin
admin.site.register(DocumentBundle
NotFoundApiExceptions
pluck
audit import
CaseContact
OrganisationsAPIView(TradeRemediesApiView
#
NotFoundApiExceptions('Invalid
merge_org =
Organisation.objects.get(id
C901
user->org
OrganisationApprovalNotifyAPI(TradeRemediesApiView
values.get("previous_role
case.assign_user(submission.created_by
OrganisationCaseRoleAPI(TradeRemediesApiView
LOA
usercase.case.to_minimal_dict
CeleryIntegration
django_log_formatter_ecs
Vault
NB
ImproperlyConfigured
default=
Build
# Quick
# See
# Application
DIRS
OPTIONS
_database_uri =
f"{_VCAP_SERVICES['postgres'][0]['credentials']['uri
_database_uri
MAX_CONNS
https://docs.djangoproject.com/en/2.0/ref/settings/#auth-password-validators
NAME
min_length
Europe
Y-%m-%dT%H:%M:%S%z
# Redis - Trade
the Django Cache
Celery
Caseworker
message)s
env("AWS_REGION
default="eu
S3 Root
Max
# Set to True
CASE_WORKER_ENVIRONMENT_KEY = env("CASE_WORKER_ENVIRONMENT_KEY
PUBLIC_ENVIRONMENT_KEY =
FILE
Reset
HTTP_X_FORWARDED_FOR
REMOTE_ADDR
Time
# Organisation
ORGANISATION_INVITE_DURATION_HOURS
Asynchronous
Elastic
VCAP
elastic_vcap_config
Companies House
COMPANIES_HOUSE_API_KEY = env("COMPANIES_HOUSE_API_KEY
Geckoboard API
EU
European Customs Union
StreamHandler
ECSFormatter
Token
base_dir = os.path.dirname(os.path.dirname(__file
help="User
logger.info("|= Creating
admin_user.set_password(options["password
Token.objects.filter(user
AUDIT_TYPE_PURGE
AUDIT_TYPE_RESTORE
Audit(models
Purge
Log In"
Log Out
Event
ForeignKey(ContentType
self.data["case_title
case_title
self.data
Audit Type
Audit Content
row_data.get("content_type
self.data.items
hasattr(value
LogHumaniser
f"Error
self.data.get("id
isinstance(spec
import hashlib
django.core.cache
md5.hexdigest
kwargs.values
OrganisationDetail
UserDetail
UserList
CaseDetail
CaseDetail.as_view
OrganisationList.as_view
OrganisationDetail.as_view
OperationalError
IntegrityError
parent.data
ON
NOTIFY
SELECT a.id
a.data
ON a.id=
b.id
Audit.objects.raw(SQL
SmallIntegerField
self.default
Presentation
hasattr(shape