Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the “school must be verified” validation from the school student creation flow and teacher invitation flow, aligning behavior with the linked issue.
Changes:
- Removed the verified-school guard from
SchoolStudent::Createvalidation. - Removed the verified-school model validation from
TeacherInvitation. - Deleted specs that asserted the old “unverified school” failure behavior.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
lib/concepts/school_student/create.rb |
Stops rejecting student creation based on school.verified?. |
app/models/teacher_invitation.rb |
Removes school_is_verified model validation. |
spec/concepts/school_student/create_spec.rb |
Removes spec coverage for the old unverified-school rejection. |
spec/concepts/school_teacher/invite_spec.rb |
Removes spec coverage for the old unverified-school rejection. |
Comments suppressed due to low confidence (1)
spec/concepts/school_student/create_spec.rb:85
- After removing the "school is not verified" failure case, there’s no spec asserting the new expected behavior (that an unverified school can still create a student successfully). Add a context/example for an unverified school to prevent regressions back to the old restriction.
context 'when the student cannot be created in profile api because of a 422 response' do
let(:error) { { 'message' => "something's up with the username" } }
let(:exception) { ProfileApiClient::Student422Error.new(error) }
before do
allow(ProfileApiClient).to receive(:create_school_student).and_raise(exception)
end
…and-inviting-teachers
Contributor
|
Looks fine to me but let's not merge yet. |
This file contains hidden or 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
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.
Status
What's changed?