-
Notifications
You must be signed in to change notification settings - Fork 66
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
10: [ART] POA request resolution validates unique POA request #20053
Merged
+24
−0
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
nihil2501
changed the title
Art/poa requests/part 5/representatives.5
10: [ART] POA request resolution validates unique POA request
Dec 31, 2024
va-vfs-bot
temporarily deployed
to
art/poa-requests/part-5/representatives.5/main/main
December 31, 2024 03:12
Inactive
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.4
branch
from
January 9, 2025 22:48
fa23fd0
to
22adafc
Compare
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 9, 2025 23:14
bb50832
to
b949420
Compare
va-vfs-bot
temporarily deployed
to
art/poa-requests/part-5/representatives.5/main/main
January 9, 2025 23:36
Inactive
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.4
branch
from
January 10, 2025 02:34
22adafc
to
f3ebe6d
Compare
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 10, 2025 02:39
b949420
to
707e7fa
Compare
va-vfs-bot
temporarily deployed
to
art/poa-requests/part-5/representatives.5/main/main
January 10, 2025 02:41
Inactive
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.4
branch
from
January 10, 2025 16:46
52095eb
to
abb7e62
Compare
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 10, 2025 17:15
707e7fa
to
b0a2056
Compare
va-vfs-bot
temporarily deployed
to
art/poa-requests/part-5/representatives.5/main/main
January 10, 2025 17:23
Inactive
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.4
branch
from
January 10, 2025 18:19
abb7e62
to
8489c6d
Compare
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 10, 2025 18:23
b0a2056
to
efb52da
Compare
va-vfs-bot
temporarily deployed
to
art/poa-requests/part-5/representatives.5/main/main
January 10, 2025 18:53
Inactive
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.4
branch
2 times, most recently
from
January 10, 2025 19:22
e963714
to
8dd47f9
Compare
LindseySaari
previously approved these changes
Jan 10, 2025
Base automatically changed from
art/poa-requests/part-5/representatives.4
to
master
January 10, 2025 20:30
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
2 times, most recently
from
January 10, 2025 20:34
ad56981
to
ba15e89
Compare
ojbucao
approved these changes
Jan 10, 2025
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 10, 2025 20:38
ba15e89
to
3f85344
Compare
ojbucao
force-pushed
the
art/poa-requests/part-5/representatives.5
branch
from
January 10, 2025 20:47
3f85344
to
dcd2fc5
Compare
LindseySaari
approved these changes
Jan 10, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Add Unique Validation for POA Request Resolutions
Description
This pull request introduces a uniqueness constraint for
power_of_attorney_request
in thePowerOfAttorneyRequestResolution
model to ensure that each POA request can only be resolved once.Key Changes
Model Validation:
validates :power_of_attorney_request, uniqueness: true
constraint to enforce uniqueness for POA requests.Test Coverage:
PowerOfAttorneyRequestResolution
to verify the uniqueness validation.