Skip to content

Commit

Permalink
Merge pull request #4646 from DariusPirvulescu/4476-seed-partner-wait…
Browse files Browse the repository at this point in the history
…ing-for-approval

4476: Add partner waiting for approval to seeds
  • Loading branch information
cielf authored Sep 10, 2024
2 parents e8e16fc + cdeef68 commit ff587ae
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
6 changes: 6 additions & 0 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down

0 comments on commit ff587ae

Please sign in to comment.