-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Helpdesk integration #2159
Open
agalamatis
wants to merge
27
commits into
master
Choose a base branch
from
helpdesk-integration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Helpdesk integration #2159
Changes from 26 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
4b7dd31
testing the tests and setup
aa42ce1
experiment branch to check with the ticketing test, IGNORE
3fd82cf
sorting out tests
7cae664
ross update
de3fee2
WIP
rossmiller df4cec0
WIP
rossmiller df75a79
WIP
rossmiller 478f21e
Tidy up
rossmiller 834f57c
Restore line removed in error
rossmiller 2b6f73c
Fix linting, support request logic
rossmiller 9732e09
Linting
rossmiller ecf9b29
Use HelpDeskUser
rossmiller 7ce5315
Linting
rossmiller 63f0441
Black
rossmiller f8ac648
pylint
rossmiller 288a80e
Fix tests, update refs to Zendesk to help desk
rossmiller eeb6d14
Linting and tidy up
rossmiller d489907
Add missing migrations
rossmiller ecb3992
Add missing migrations
rossmiller 09ecb61
Lint migrations
rossmiller e47a46d
Add integration test settings
rossmiller bde4840
Try and pass setting as env var
rossmiller 1f21f60
Debug CI
rossmiller 293ec69
Add logging back in
rossmiller 224006c
Bump helpdesk version #
rossmiller a0228df
Tidy up
rossmiller 620f91e
Tidy up
rossmiller File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...pace/apps/request_access/migrations/0005_rename_zendesk_reference_number_accessrequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.15 on 2022-09-26 17:38 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("request_access", "0004_alter_accessrequest_training_screenshot"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="accessrequest", | ||
old_name="zendesk_reference_number", | ||
new_name="help_desk_reference_number", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...space/apps/request_data/migrations/0005_rename_zendesk_ticket_id_datarequest_help_desk.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.2.15 on 2022-09-26 17:38 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("request_data", "0004_datarequest_data_licence"), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameField( | ||
model_name="datarequest", | ||
old_name="zendesk_ticket_id", | ||
new_name="help_desk_ticket_id", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the integration settings module as an env var as this command was using the base settings originally.