-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4646 from DariusPirvulescu/4476-seed-partner-wait…
…ing-for-approval 4476: Add partner waiting for approval to seeds
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,6 +83,10 @@ Make sure to install **Ubuntu** as your Linux distribution. (This should be defa | |
Recertification Required Partner | ||
Email: [email protected] | ||
Password: password! | ||
Waiting Approval Partner | ||
Email: [email protected] | ||
Password: password! | ||
``` | ||
</details> | ||
|
||
|
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 |
---|---|---|
|
@@ -214,6 +214,12 @@ def random_record_for_org(org, klass) | |
email: "[email protected]", | ||
status: :recertification_required, | ||
notes: note.sample | ||
}, | ||
{ | ||
name: "Pawnee Middle School", | ||
email: "[email protected]", | ||
status: :awaiting_review, | ||
notes: note.sample | ||
} | ||
].each do |partner_option| | ||
p = Partner.find_or_create_by!(partner_option) do |partner| | ||
|