-
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
🛂(frontend) remove persistance student token #2505
Merged
AntoLC
merged 2 commits into
master
from
issue/anthony/remove-persistance-student-token
Nov 21, 2023
Merged
🛂(frontend) remove persistance student token #2505
AntoLC
merged 2 commits into
master
from
issue/anthony/remove-persistance-student-token
Nov 21, 2023
Conversation
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
Mixing shorthand and non-shorthand properties during rerender can lead to styling bugs (flex / flexBasis). This commit fixes the issue.
AntoLC
force-pushed
the
issue/anthony/remove-persistance-student-token
branch
3 times, most recently
from
November 17, 2023 15:59
e447755
to
c432a0a
Compare
AntoLC
requested review from
lunika and
kernicPanel
and removed request for
kernicPanel and
lunika
November 17, 2023 16:07
AntoLC
force-pushed
the
issue/anthony/remove-persistance-student-token
branch
2 times, most recently
from
November 20, 2023 10:23
a6ccdc1
to
7247091
Compare
Opening a classroom invite link switch our current token to a student token, so when we go back to the browser instructor tab, the resources cannot be access anymore, this is because of the persistency of the student token. We remove this persistency, the student token is now only valid for the current tab.
AntoLC
force-pushed
the
issue/anthony/remove-persistance-student-token
branch
from
November 20, 2023 11:32
7247091
to
eb76489
Compare
lunika
approved these changes
Nov 20, 2023
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.
Awesome
lunika
added a commit
that referenced
this pull request
Nov 29, 2023
Added - Meta description and meta title on the website from the API (#2516) - Retrieve BBB learning analytics and send them through API - Classroom attendance analytics (#2499) - Add a language picker for the invite link on the website (#2504) Changed - Replace grommet DropButton component (#2513) - On live, can now share resource when one is already shared (#2512) - Remove persistency on token from invite link (#2505) - Replace grommet Cards / Footer/ Anchor / Tip / Nav (#2503) - Refacto widgets SharedLiveMedia (#2504) - Replace grommet Button (#2453) - Replace grommet Box (#2484) - Replace grommet TextArea (#2500) - Update psycopg to version 3 - Update node to version 20 - Replace pylti with oauthlib for LTI request validation - Replace faker with @faker-js/faker (frontend) Fixed - Blocking error when shared document is deleted (#2504) - Improve render sharing picture in live (#2508)
lunika
added a commit
that referenced
this pull request
Nov 29, 2023
Added - Meta description and meta title on the website from the API (#2516) - Retrieve BBB learning analytics and send them through API - Classroom attendance analytics (#2499) - Add a language picker for the invite link on the website (#2504) Changed - Replace grommet DropButton component (#2513) - On live, can now share resource when one is already shared (#2512) - Remove persistency on token from invite link (#2505) - Replace grommet Cards / Footer/ Anchor / Tip / Nav (#2503) - Refacto widgets SharedLiveMedia (#2504) - Replace grommet Button (#2453) - Replace grommet Box (#2484) - Replace grommet TextArea (#2500) - Update psycopg to version 3 - Update node to version 20 - Replace pylti with oauthlib for LTI request validation - Replace faker with @faker-js/faker (frontend) Fixed - Blocking error when shared document is deleted (#2504) - Improve render sharing picture in live (#2508)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Purpose
Opening a classroom invite link switch our current token to
a student token, so when we go back to the browser instructor tab,
the resources cannot be access anymore, this is because of the
persistency of the student token. We remove this persistency,
the student token is now only valid for the current tab.
Proposal