-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update with Image frontend buttons (#618)
* Update with Image frontend buttons * Update with validations to model file * Bump debug from 1.9.1 to 1.9.2 Bumps [debug](https://github.com/ruby/debug) from 1.9.1 to 1.9.2. - [Release notes](https://github.com/ruby/debug/releases) - [Commits](ruby/debug@v1.9.1...v1.9.2) --- updated-dependencies: - dependency-name: debug dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Update images are saved but do not show yet * Update images now render on the index page but in no way are correct * Comment out section added to test to pass - THIS IS A TEMP THING THAT NEEDS TO BE UNDONE * Comment out section added X2 * Update hero image rendering as it should * docs: add jeevikasirwani as a contributor for code (#627) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] --------- Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> * 590 parameterize contact mailer (#607) * commit annotation change * update contacts create route to use post and update url on contacts form * add tests for contacts * replace hardcoded url, add instance variable for org name to use in mailer * replace current_tenant because it was coming up nil * add scope to contact form and update controller action to use stong params * update tests to use correct params format * fix test desciptions * Small policy and factory fixes (#625) * Move constants outside of class * Add active staff requirement to InvitationPolicy * Correct StaffAccountPolicyTest file name * Add active staff requirement to StaffAccountPolicy * Refactor AdoptablePetPolicy rule to utilize allowed_to? instead of checking permissions directly to benefit from other policy's prechecks * Fix pets factory traits to associate has_ relationship objects correctly * Add relation_scope test for AdoptablePetPolicyTest * Fix factory trait to work with build strategy * docs: add jp524 as a contributor for code (#632) * docs: update README.md [skip ci] * docs: update .all-contributorsrc [skip ci] --------- Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> * Staff Dashboard UI - Make hamburger functional to open/close sidebar (#631) * Add toggle Stimulus controller * Modify Geeks UI CSS * Add Org ID to resources to scope them (#614) Co-authored-by: Ben Robinson <[email protected]> * Update with partial * Update with Image frontend buttons * Update with validations to model file * Update images are saved but do not show yet * Update images now render on the index page but in no way are correct * Comment out section added to test to pass - THIS IS A TEMP THING THAT NEEDS TO BE UNDONE * Comment out section added X2 * Update hero image rendering as it should * Update with partial * Update with changes to partial * Update with a debuggin test * Update with a debuggin test * Update conflist clean up * Schema error clean-up * Syntax cleanup * Syntax cleanup * Update image upload causing major app error * Syntax cleanup * Error message for large file created * Error message for large file created * Merge conflict clean up * Update to notification * Cleanup of Readme * Cleanup of Readme2 * Cleanup of conflict * Cleanup of yml * Cleanup of tests * Removal of 'end' * Update to test * Update adjusted one test to pass * Update with test passing locally * Standardrb fix * 1 of 5 failing tests on CI should pass * Syntax cleanup * Update more failing tests on CI should pass * Update more failing tests on CI should pass * Standard - fix * Updated with hero text * Updated routes * Updated syntax and merge with main * Updated with text * Image add feature seems to work correctly * Controller method updates * Update with sytax fixes * Update with test refactor * Update with test refactor part 2 * Remove test changes in file * Remove test changes in file * Remove test changes in file * Testing changes in tests * Testing changes in tests * Update test passing --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com> Co-authored-by: Alisa <[email protected]> Co-authored-by: Ken Maeshima <[email protected]> Co-authored-by: Jade <[email protected]> Co-authored-by: Ben <[email protected]> Co-authored-by: Ben Robinson <[email protected]>
- Loading branch information
1 parent
ff77741
commit 9685fc4
Showing
15 changed files
with
131 additions
and
66 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
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
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
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
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
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<div class="mb-4"> | ||
<%= render "components/attachment_form", instance: @pet, title: 'Photos', url: attach_images_pet_path(@pet), attachment_type: 'images' %> | ||
<%= render "components/image_attachment_table", pet: @pet %> | ||
<%= render "components/image_attachment_table", images: @pet.images %> | ||
</div> |
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
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
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
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
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
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
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
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