This is a Decidim I2CAT app.
To keep your fork up-to-date with the upstream repository, i.e., to upgrade decidim, you must configure a remote that points to the upstream repository in Git.
You can do it with the included rake task:
bin/rake clean_app:install
or do it manually:
# List the current configured remote repository for your fork.
$ git remote -v
# Specify the new remote upstream repository that will be synced with the fork.
$ git remote add clean-app https://github.com/CodiTramuntana/decidim-clean-app.git
# Verify the new decidim-clean repository you've specified for your fork.
$ git remote -v
Syncing a fork
You can do it with the included rake task:
# Pull from master by default
bin/rake clean_app:sync
# Or pull from a specific branch
bin/rake clean_app:sync[release/0.27-stable]
or do it manually:
# Create a new branch in your fork to start a PR.
$ git checkout master
# Incorporate changes from the decidim-clean repository into the current branch.
$ git pull clean-app master --allow-unrelated-histories
Prepare the database:
RAILS_ENV=test bin/rake db:create db:migrate
bundle exec rails decidim_conferences:install:migrations
bundle exec rails decidim_challenges:install:migrations
RAILS_ENV=test bundle exec rails db:migrate
And run tests:
bundle exec rspec spec
Documentation in docs/migrate_to_clean_app.md
.
Add notification when a user follows an Assembly and followers list for each Assembly. (#22)
app/decorators/decidim/follows_controller_decorator.rb
app/cells/decidim/follow_button/show.erb
app/views/layouts/decidim/admin/assembly.html.erb
--> !!!!!! TO REVIEW
app/events/decidim/admin/user_follow_event.rb
app/controllers/decidim/assemblies/admin/assembly_followers_controller.rb
app/views/decidim/assemblies/admin/assembly_followers/index.html.erb
Hide "àmbits", "àreas" and "mostrar" filters. (#35)
app/views/decidim/assemblies/_filter_by_type.html.erb
app/views/decidim/shared/participatory_space_filters/_filters.html.erb
Redirect index Pages to "smartcataloniachallenge" help Page. (#33)
app/decorators/controllers/decidim/pages_controller_decorator.rb
app/decorators/cells/decidim/assemblies/assembly_m_cell_decorator.rb
app/controllers/concerns/decidim/challenges/orderable_challenges.rb
decidim-core/app/views/layouts/decidim/_main_footer.html.erb
decidim-core/app/views/layouts/decidim/_head.html.erb
Changed the process nav to always show as a dropdown for the assemblies/atles.
app/views/decidim/shared/_extended_navigation_bar.html.erb