-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove
ember-crumbly
(#651)
* refactor: rename breadCrumb to breadcrumb in routes * refactor: merge breadcrumb with route metadata * fix: edit article title * refactor: remove `ember-crumbly` and update BreadCrumbs component * refactor: static-pages routes to new structure static-pages.static-page.show doesn't work yet. * refactor: change static-pages routes to new structure * refactor(package): remove workerpool resolution * fix: optional chain on controller in breadcrumb * refactor: finishing touches on static pages controllers/routes * fix: skip breadcrumb when model not loaded * refactor: restructure activities controllers and routes * refactor: restructure articles controllers and routes * refactor: restructure books controllers and routes * refactor: restructure groups controllers and routes * Update changed controllers * Update changed controllers * refactor: restructure forum controllers and routes * fix: make some routes extend AuthenticatedRoute again * refactor: push changes * refactor: restructure debit collections controllers and routes * refactor: only import has-next in bundle * refactor: change some ENV imports to absolute * refactor: restructure debit mandates controllers and routes * refactor: restructure debit transactions controllers and routes * fix: transaction permission error * feat: implement profile route * refactor: restructure article and photo comments controllers and routes * refactor: restructure photo-albums controllers and routes * refactor: restructure users controllers and routes * refactor: restructure polls controllers and routes * refactor: restructure mail aliases controllers and routes * refactor: restructure mail moderations controllers and routes * refactor: restructure form responses controllers and routes * refactor: restructure vacancies controllers and routes * refactor: fix and implement missing tests * fix: lint * refactor: rename BreadCrumbs to Breadcrumbs * chore: change mailalias to mail alias * chore: reformat classes * add a folder for mail-moderation. Tested the reachability of the pages that belong to these routes, which was initially broken. * refactor: reorder params * refactor: simplify getter * fix: transaction-form title * fix: post-form/collection-form title --------- Co-authored-by: matteo <[email protected]>
- Loading branch information
1 parent
f7eda5c
commit cd14eb8
Showing
555 changed files
with
3,344 additions
and
1,753 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<ol class='breadcrumb'> | ||
<li class='breadcrumb-item'><LinkTo @route='index'>C.S.V. Alpha</LinkTo></li> | ||
|
||
{{#each @routeInfos as |routeInfo|}} | ||
<li class='breadcrumb-item'> | ||
{{#if (has-next routeInfo @routeInfos)}} | ||
<LinkTo @route={{routeInfo.name}}> | ||
{{routeInfo.metadata.breadcrumb.title}} | ||
</LinkTo> | ||
{{else}} | ||
{{routeInfo.metadata.breadcrumb.title}} | ||
{{/if}} | ||
</li> | ||
{{/each}} | ||
</ol> |
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
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
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
Oops, something went wrong.