├── .dockerignore ├── .env.sample ├── .github ├── ISSUE_TEMPLATE │ ├── -------bug-report.md │ ├── -------improvement-suggestions.md │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── _build.yaml │ ├── _check.yaml │ ├── _deploy.yaml │ ├── _release.yaml │ ├── brakeman.yaml │ ├── branch.yaml │ ├── dependencies-pr.yml │ └── main.yaml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_rails.yml ├── .ruby-version ├── CHANGELOG.md ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE-AGPLv3.txt ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── cells │ └── decidim │ │ ├── assemblies │ │ ├── assembly_g_cell.rb │ │ └── content_blocks │ │ │ └── highlighted_assemblies_settings_form │ │ │ └── show.erb │ │ ├── card_g_cell.rb │ │ ├── comments │ │ ├── comment_form │ │ │ └── opinion.erb │ │ ├── last_comment_activity │ │ │ └── show.erb │ │ └── last_comment_activity_cell.rb │ │ ├── conferences │ │ └── content_blocks │ │ │ └── highlighted_conferences_settings_form │ │ │ └── show.erb │ │ ├── content_blocks │ │ ├── last_comment │ │ │ └── show.erb │ │ └── last_comment_cell.rb │ │ ├── images_panel │ │ └── show.erb │ │ ├── last_comment_activities │ │ └── show.erb │ │ ├── last_comment_activities_cell.rb │ │ ├── participatory_processes │ │ ├── content_blocks │ │ │ └── highlighted_processes_settings_form │ │ │ │ └── show.erb │ │ └── process_g_cell.rb │ │ └── proposals │ │ └── proposal_metadata_cell.rb ├── commands │ └── decidim │ │ ├── accountability │ │ └── destroy_all_results.rb │ │ ├── areas │ │ └── destroy_all_areas.rb │ │ ├── assemblies │ │ └── destroy_all_assemblies.rb │ │ ├── blogs │ │ └── destroy_all_posts.rb │ │ ├── budgets │ │ └── destroy_all_budgets.rb │ │ ├── comments │ │ └── destroy_all_comments.rb │ │ ├── debates │ │ └── destroy_all_debates.rb │ │ ├── destroy_all_attachments.rb │ │ ├── gamifications │ │ └── destroy_all_badges.rb │ │ ├── meetings │ │ └── destroy_all_meetings.rb │ │ ├── messaging │ │ └── destroy_all_messages.rb │ │ ├── organizations │ │ └── destroy_organization.rb │ │ ├── pages │ │ └── destroy_all_pages.rb │ │ ├── participatory_processes │ │ └── destroy_all_participatory_processes.rb │ │ ├── proposals │ │ └── destroy_all_proposals.rb │ │ ├── search.rb │ │ └── surveys │ │ └── destroy_all_surveys.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── decidim │ │ ├── debates │ │ │ └── versions_controller.rb │ │ └── editor_images_controller.rb │ └── decidim_controller.rb ├── forms │ └── decidim │ │ └── debates │ │ └── close_debate_form.rb ├── helpers │ ├── application_helper.rb │ └── decidim │ │ ├── cloudfront_logo_helper.rb │ │ ├── layout_helper.rb │ │ └── menu_helper.rb ├── jobs │ ├── application_job.rb │ └── purge_component_cache_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ └── decidim │ │ ├── proposals │ │ └── proposal_state.rb │ │ └── searchable_resource.rb ├── packs │ ├── entrypoints │ │ ├── application.js │ │ └── decidim_cfj_participatory_processes.js │ ├── images │ │ └── .keep │ ├── src │ │ ├── channels │ │ │ └── .keep │ │ └── decidim │ │ │ ├── cfj │ │ │ ├── accordion-scroll.js │ │ │ └── editor │ │ │ │ └── extensions │ │ │ │ ├── iframe │ │ │ │ └── index.js │ │ │ │ ├── simple_image │ │ │ │ └── index.js │ │ │ │ └── tag_edit │ │ │ │ ├── index.js │ │ │ │ └── text_dialog.js │ │ │ ├── decidim_application.js │ │ │ └── editor │ │ │ ├── extensions │ │ │ └── decidim_kit │ │ │ │ └── index.js │ │ │ └── toolbar.js │ └── stylesheets │ │ └── decidim │ │ ├── cfj │ │ ├── comment_content.scss │ │ ├── forms.scss │ │ ├── header.scss │ │ ├── media_print.scss │ │ ├── tiptap_html_edit.scss │ │ └── typography.scss │ │ └── decidim_application.scss ├── presenters │ └── decidim │ │ └── notification_to_mailer_presenter.rb ├── previewers │ └── heic_previewer.rb ├── queries │ └── decidim │ │ ├── accountability │ │ └── filtered_results.rb │ │ ├── blogs │ │ └── filtered_posts.rb │ │ └── debates │ │ └── filtered_debates.rb ├── uploaders │ └── decidim │ │ ├── image_uploader.rb │ │ └── organization_mobile_logo_uploader.rb └── views │ ├── decidim │ ├── admin │ │ ├── officializations │ │ │ └── index.html.erb │ │ └── organization_appearance │ │ │ └── form │ │ │ └── _images.html.erb │ ├── application │ │ └── _document.html.erb │ ├── blogs │ │ └── posts │ │ │ └── show.html.erb │ ├── debates │ │ └── debates │ │ │ └── show.html.erb │ ├── devise │ │ └── invitations │ │ │ └── edit.html.erb │ ├── participatory_processes │ │ ├── admin │ │ │ └── participatory_process_groups │ │ │ │ └── _form.html.erb │ │ └── participatory_processes │ │ │ └── show.html.erb │ ├── proposals │ │ ├── collaborative_drafts │ │ │ └── _collaborative_draft_aside.html.erb │ │ └── proposals │ │ │ └── _proposal_aside.html.erb │ └── shared │ │ └── _filters.html.erb │ ├── layouts │ ├── decidim │ │ ├── _logo_mobile.html.erb │ │ ├── _mailer_logo.html.erb │ │ ├── footer │ │ │ └── _main_links.html.erb │ │ ├── header │ │ │ └── _main_links_mobile_account.html.erb │ │ ├── mailer.html.erb │ │ └── newsletter_base.html.erb │ └── mailer.html.erb │ └── static │ └── api │ └── docs │ └── index.html ├── bin ├── bundle ├── dev ├── get_author_rank.sh ├── get_comments.sh ├── get_user_data.sh ├── rails ├── rake ├── setup ├── shakapacker ├── shakapacker-dev-server └── update ├── config.ru ├── config ├── application.rb ├── assets.rb ├── boot.rb ├── brakeman.ignore ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── esbuild.config.js ├── initializers │ ├── active_storage.rb │ ├── application_controller_renderer.rb │ ├── aws_xray.rb │ ├── backtrace_silencers.rb │ ├── blob_parser_override.rb │ ├── comments_count.rb │ ├── content_block.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── decidim.rb │ ├── decidim_awesome.rb │ ├── decidim_override.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth_line.rb │ ├── omniauth_logging.rb │ ├── pg_search_override.rb │ ├── redis.rb │ ├── session_store.rb │ ├── slack.rb │ ├── url_converter.rb │ └── wrap_parameters.rb ├── locales │ ├── area.ja.yml │ ├── component_settings.en.yml │ ├── component_settings.ja.yml │ ├── en.yml │ ├── file_validators_ja.yml │ ├── ja.yml │ ├── line_login.en.yml │ ├── line_login.ja.yml │ ├── navigation_maps.ja.yml │ ├── polis_ja.yml │ └── term.ja.yml ├── newrelic.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── shakapacker.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml └── webpack │ ├── .modernizrrc │ ├── custom.js │ └── webpack.config.js ├── consultations_removal.bash ├── db ├── migrate │ ├── 20200912130529_devise_create_decidim_users.decidim.rb │ ├── 20200912130530_create_decidim_organizations.decidim.rb │ ├── 20200912130531_devise_invitable_add_to_decidim_users.decidim.rb │ ├── 20200912130532_user_belongs_to_organization.decidim.rb │ ├── 20200912130533_user_has_roles.decidim.rb │ ├── 20200912130534_add_description_to_organizations.decidim.rb │ ├── 20200912130535_add_confirmable_to_devise.decidim.rb │ ├── 20200912130536_add_name_to_users.decidim.rb │ ├── 20200912130537_add_locale_to_users.decidim.rb │ ├── 20200912130538_create_decidim_authorizations.decidim.rb │ ├── 20200912130539_create_decidim_static_pages.decidim.rb │ ├── 20200912130540_create_decidim_features.decidim.rb │ ├── 20200912130541_add_categories.decidim.rb │ ├── 20200912130542_create_decidim_scopes.decidim.rb │ ├── 20200912130543_make_organization_description_optional.decidim.rb │ ├── 20200912130544_add_avatar_to_users.decidim.rb │ ├── 20200912130545_add_logo_to_organizations.decidim.rb │ ├── 20200912130546_add_configuration_to_features.decidim.rb │ ├── 20200912130547_add_handler_to_organization.decidim.rb │ ├── 20200912130548_create_resource_links.decidim.rb │ ├── 20200912130549_create_identities.decidim.rb │ ├── 20200912130550_add_uniqueness_field_to_authorizations.decidim.rb │ ├── 20200912130551_create_user_groups.decidim.rb │ ├── 20200912130552_create_user_group_memberships.decidim.rb │ ├── 20200912130553_add_show_statistics_to_organization.decidim.rb │ ├── 20200912130554_add_user_groups_verified.decidim.rb │ ├── 20200912130555_add_avatar_to_user_groups.decidim.rb │ ├── 20200912130556_add_weight_to_features.decidim.rb │ ├── 20200912130557_change_user_groups_verified_to_timestamp.decidim.rb │ ├── 20200912130558_add_timestamps_to_identities.decidim.rb │ ├── 20200912130559_add_favicon_to_decidim_organizations.decidim.rb │ ├── 20200912130560_add_action_permissions_to_decidim_features.decidim.rb │ ├── 20200912130561_add_comments_and_replies_notifications_to_users.decidim.rb │ ├── 20200912130562_add_newsletter_notifications_to_users.decidim.rb │ ├── 20200912130563_add_published_at_to_decidim_features.decidim.rb │ ├── 20200912130564_add_social_media_handlers_to_organization.decidim.rb │ ├── 20200912130565_add_organization_logo_and_url.decidim.rb │ ├── 20200912130566_create_decidim_newsletters.decidim.rb │ ├── 20200912130567_add_organization_custom_reference.decidim.rb │ ├── 20200912130568_add_secondary_hosts_to_organizations.decidim.rb │ ├── 20200912130569_create_reports.decidim.rb │ ├── 20200912130570_create_moderations.decidim.rb │ ├── 20200912130571_add_available_authorizations_to_organization.decidim.rb │ ├── 20200912130572_change_decidim_user_email_index_uniqueness.decidim.rb │ ├── 20200912130573_add_organization_to_identities.decidim.rb │ ├── 20200912130574_change_decidim_identities_provider_uid_index_uniqueness.decidim.rb │ ├── 20200912130575_add_rejected_at_to_user_groups.decidim.rb │ ├── 20200912130576_add_deleted_fields_to_users.decidim.rb │ ├── 20200912130577_add_hierarchy_to_scopes.decidim.rb │ ├── 20200912130578_set_email_unique_in_organization_conditional.decidim.rb │ ├── 20200912130579_add_organization_to_user_groups.decidim.rb │ ├── 20200912130580_add_uniqueness_to_name_and_document_number_to_user_groups.decidim.rb │ ├── 20200912130581_create_decidim_categorizations.decidim.rb │ ├── 20200912130582_add_admin_to_users.decidim.rb │ ├── 20200912130583_migrate_user_roles_to_participatory_process_roles.decidim.rb │ ├── 20200912130584_make_moderations_polymorphic.decidim.rb │ ├── 20200912130585_add_managed_to_users.decidim.rb │ ├── 20200912130586_set_email_unique_in_organization_condition_for_managed_users.decidim.rb │ ├── 20200912130587_create_impersonation_logs.decidim.rb │ ├── 20200912130588_make_categories_polymorphic.decidim.rb │ ├── 20200912130589_add_roles_to_users.decidim.rb │ ├── 20200912130590_create_decidim_follows.decidim.rb │ ├── 20200912130591_create_decidim_notifications.decidim.rb │ ├── 20200912130592_add_extra_to_notifications.decidim.rb │ ├── 20200912130593_add_emails_on_notifications_flag_to_user.decidim.rb │ ├── 20200912130594_add_header_snippets_to_organizations.decidim.rb │ ├── 20200912130595_remove_followable_index_from_follows.decidim.rb │ ├── 20200912130596_remove_comment_and_replies_notifications_from_users.decidim.rb │ ├── 20200912130597_add_status_to_authorizations.decidim.rb │ ├── 20200912130598_add_verification_metadata_to_authorizations.decidim.rb │ ├── 20200912130599_add_verification_attachment_to_authorizations.decidim.rb │ ├── 20200912130600_add_cta_button_url_and_text_to_organization.decidim.rb │ ├── 20200912130601_create_decidim_messaging.decidim.rb │ ├── 20200912130602_create_versions.decidim.rb │ ├── 20200912130603_add_object_changes_to_versions.decidim.rb │ ├── 20200912130604_create_decidim_receipts.decidim.rb │ ├── 20200912130605_create_decidim_attachment_collections.decidim.rb │ ├── 20200912130606_create_unique_nicknames.decidim.rb │ ├── 20200912130607_extend_user_profile.decidim.rb │ ├── 20200912130608_add_enable_omnipresent_banner_to_decidim_organizations.decidim.rb │ ├── 20200912130609_add_omnipresent_banner_title_to_decidim_organizations.decidim.rb │ ├── 20200912130610_add_omnipresent_banner_short_description_to_decidim_organizations.decidim.rb │ ├── 20200912130611_add_omnipresent_banner_url_to_decidim_organizations.decidim.rb │ ├── 20200912130612_add_highlighted_content_banner_to_decidim_organizations.decidim.rb │ ├── 20200912130613_add_action_log.decidim.rb │ ├── 20200912130614_fix_reference_for_all_resources.decidim.rb │ ├── 20200912130615_create_participatory_space_private_users.decidim.rb │ ├── 20200912130616_create_decidim_searchable_resource.decidim.rb │ ├── 20200912130617_create_decidim_area_types.decidim.rb │ ├── 20200912130618_create_decidim_areas.decidim.rb │ ├── 20200912130619_fix_nickname_index.decidim.rb │ ├── 20200912130620_add_version_to_action_logs.decidim.rb │ ├── 20200912130621_create_participatory_space_links.decidim.rb │ ├── 20200912130622_rename_features_to_components.decidim.rb │ ├── 20200912130623_doorkeeper_models.decidim.rb │ ├── 20200912130624_rename_maximum_votes_per_proposal_to_threshold_per_proposal.decidim.rb │ ├── 20200912130625_change_event_name_and_class_to_rename_to_publish_proposal_event.decidim.rb │ ├── 20200912130626_create_coauthorships.decidim.rb │ ├── 20200912130627_add_tos_version_to_organization.decidim.rb │ ├── 20200912130628_add_accepted_tos_version_field_to_users.decidim.rb │ ├── 20200912130629_change_newsletter_notification_type_value.decidim.rb │ ├── 20200912130630_rename_missing_features_to_components.decidim.rb │ ├── 20200912130631_create_decidim_resource_permissions.decidim.rb │ ├── 20200912130632_create_decidim_metrics.decidim.rb │ ├── 20200912130633_add_nickname_to_managed_users.decidim.rb │ ├── 20200912130634_fix_result_follows.decidim.rb │ ├── 20200912130635_create_decidim_amendments.decidim.rb │ ├── 20200912130636_add_content_blocks.decidim.rb │ ├── 20200912130637_create_decidim_hashtags.decidim.rb │ ├── 20200912130638_add_core_content_blocks.decidim.rb │ ├── 20200912130639_rename_content_block_options_to_settings.decidim.rb │ ├── 20200912130640_add_badge_scores.decidim.rb │ ├── 20200912130641_add_images_to_content_blocks.decidim.rb │ ├── 20200912130642_move_organization_fields_to_hero_content_block.decidim.rb │ ├── 20200912130643_add_visibility_to_action_logs.decidim.rb │ ├── 20200912130644_move_users_groups_to_users_table.decidim.rb │ ├── 20200912130645_add_badge_switch_to_organizations.decidim.rb │ ├── 20200912130646_create_decidim_continuity_badge_statuses.decidim.rb │ ├── 20200912130647_add_roles_to_memberships.decidim.rb │ ├── 20200912130648_make_authors_polymorphic.decidim.rb │ ├── 20200912130649_add_columns_to_pages.decidim.rb │ ├── 20200912130650_add_static_page_topics.decidim.rb │ ├── 20200912130651_add_timestamps_to_components.decidim.rb │ ├── 20200912130652_fix_user_follows.decidim.rb │ ├── 20200912130653_add_welcome_notification.decidim.rb │ ├── 20200912130654_destroy_deleted_users_follows.decidim.rb │ ├── 20200912130655_add_users_registration_mode_to_organizations.decidim.rb │ ├── 20200912130656_create_decidim_contextual_help_sections.decidim.rb │ ├── 20200912130657_add_following_and_followers_counters_to_users.decidim.rb │ ├── 20200912130658_add_columns_to_static_page_topic.decidim.rb │ ├── 20200912130659_add_id_documents_fields_to_org.decidim.rb │ ├── 20200912130660_remove_following_users_count_from_users.decidim.rb │ ├── 20200912130661_add_scope_to_action_logs.decidim.rb │ ├── 20200912130662_add_area_to_action_logs.decidim.rb │ ├── 20200912130663_add_notification_types_to_users.decidim.rb │ ├── 20200912130664_add_user_groups_switch_to_organizations.decidim.rb │ ├── 20200912130665_add_smtp_settings_to_decidim_organizations.decidim.rb │ ├── 20200912130666_add_colors_to_decidim_organization.decidim.rb │ ├── 20200912130667_add_extended_data_to_newsletters.decidim.rb │ ├── 20200912130668_add_missing_indexes.decidim.rb │ ├── 20200912130669_fix_user_names.decidim.rb │ ├── 20200912130670_add_force_users_to_authenticate_before_access_organization.decidim.rb │ ├── 20200912130671_add_confidential_to_doorkeeper_application.decidim.rb │ ├── 20200912130672_add_uniq_index_to_decidim_metrics.decidim.rb │ ├── 20200912130673_add_lockable_to_users.decidim.rb │ ├── 20200912130674_add_omniauth_settings_to_decidim_organization.decidim.rb │ ├── 20200912130675_add_rich_text_editor_in_public_views_to_organizations.decidim.rb │ ├── 20200912130676_add_weight_to_categories.decidim.rb │ ├── 20200912130677_add_admin_terms_of_use_body_field_to_organization.decidim.rb │ ├── 20200912130678_create_decidim_endorsements.decidim.rb │ ├── 20200912130679_add_session_token_to_users.decidim.rb │ ├── 20200912130680_remove_continuity_badges.decidim.rb │ ├── 20200912130681_add_organization_timezone.decidim.rb │ ├── 20200912130682_add_direct_message_types_to_users.decidim.rb │ ├── 20200912130683_index_foreign_keys_in_decidim_action_logs.decidim.rb │ ├── 20200912130684_index_foreign_keys_in_decidim_amendments.decidim.rb │ ├── 20200912130685_index_foreign_keys_in_decidim_authorizations.decidim.rb │ ├── 20200912130686_index_foreign_keys_in_decidim_contextual_help_sections.decidim.rb │ ├── 20200912130687_index_foreign_keys_in_decidim_endorsements.decidim.rb │ ├── 20200912130688_index_foreign_keys_in_decidim_notifications.decidim.rb │ ├── 20200912130689_index_foreign_keys_in_oauth_access_grants.decidim.rb │ ├── 20200912130690_add_id_to_content_blocks_scope.decidim.rb │ ├── 20200912130691_rename_scope_column.decidim.rb │ ├── 20200912130692_migrate_newsletters_to_templates.decidim.rb │ ├── 20200912130693_remove_newsletter_body.decidim.rb │ ├── 20200912130694_add_index_on_content_block_scope_id.decidim.rb │ ├── 20200912130695_add_enable_machine_translation_to_decidim_organizations.decidim.rb │ ├── 20200912130696_add_comments_max_length_to_decidim_organization.decidim.rb │ ├── 20200912130697_add_machine_translation_display_priority_to_organizations.decidim.rb │ ├── 20200912130698_devise_create_decidim_admins.decidim_system.rb │ ├── 20200912130699_add_admin_participatory_process_user_roles.decidim_admin.rb │ ├── 20200912130700_rename_participatory_process_user_roles_table.decidim_admin.rb │ ├── 20200912130701_add_officialization_to_users.decidim_admin.rb │ ├── 20200912130702_add_reason_to_decidim_impersonation_logs.decidim_admin.rb │ ├── 20200912130703_add_accepted_admin_terms_at_field_to_users.decidim_admin.rb │ ├── 20200912130704_create_decidim_forms_questionnaires.decidim_forms.rb │ ├── 20200912130705_create_decidim_forms_questions.decidim_forms.rb │ ├── 20200912130706_create_decidim_forms_answers.decidim_forms.rb │ ├── 20200912130707_create_decidim_forms_answer_options.decidim_forms.rb │ ├── 20200912130708_create_decidim_forms_answer_choices.decidim_forms.rb │ ├── 20200912130709_add_session_token_to_decidim_forms_answers.decidim_forms.rb │ ├── 20200912130710_add_ip_hash_to_decidim_form_answers.decidim_forms.rb │ ├── 20200912130711_create_decidim_forms_display_conditions.decidim_forms.rb │ ├── 20200912130712_create_decidim_forms_question_matrix_rows.decidim_forms.rb │ ├── 20200912130713_add_matrix_row_id_to_decidim_forms_answer_choices.decidim_forms.rb │ ├── 20200912130714_move_authorizations_to_new_api.decidim_verifications.rb │ ├── 20200912130715_create_decidim_verifications_csv_data.decidim_verifications.rb │ ├── 20200912130716_add_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130717_translate_processes.decidim_participatory_processes.rb │ ├── 20200912130718_add_hero_image_to_processes.decidim_participatory_processes.rb │ ├── 20200912130719_add_banner_image_to_processes.decidim_participatory_processes.rb │ ├── 20200912130720_add_promoted_flag_to_processes.decidim_participatory_processes.rb │ ├── 20200912130721_add_participatory_process_steps.decidim_participatory_processes.rb │ ├── 20200912130722_add_active_flag_to_step.decidim_participatory_processes.rb │ ├── 20200912130723_add_position_to_steps.decidim_participatory_processes.rb │ ├── 20200912130724_add_published_at_to_processes.decidim_participatory_processes.rb │ ├── 20200912130725_remove_not_null_on_step_position.decidim_participatory_processes.rb │ ├── 20200912130726_add_index_for_process_slug_organization.decidim_participatory_processes.rb │ ├── 20200912130727_create_attachments.decidim_participatory_processes.rb │ ├── 20200912130728_loosen_step_requirements.decidim_participatory_processes.rb │ ├── 20200912130729_make_attachments_polymorphic.decidim_participatory_processes.rb │ ├── 20200912130730_rename_attachable_to_attached_to.decidim_participatory_processes.rb │ ├── 20200912130731_add_extra_info_to_processes.decidim_participatory_processes.rb │ ├── 20200912130732_rename_extra_info_on_processes.decidim_participatory_processes.rb │ ├── 20200912130733_remove_steps_short_description.decidim_participatory_processes.rb │ ├── 20200912130734_add_scopes_to_processes.decidim_participatory_processes.rb │ ├── 20200912130735_add_participatory_process_groups.decidim_participatory_processes.rb │ ├── 20200912130736_change_steps_end_and_start_date_to_date.decidim_participatory_processes.rb │ ├── 20200912130737_make_features_polymorphic.decidim_participatory_processes.rb │ ├── 20200912130738_add_show_statistics_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130739_attachment_description_nullable.decidim_participatory_processes.rb │ ├── 20200912130740_add_announcement_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130741_add_scopes_enabled_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130742_add_start_date_to_processes.decidim_participatory_processes.rb │ ├── 20200912130743_add_weight_to_attachments.decidim_participatory_processes.rb │ ├── 20200912130744_add_attachment_collection_to_attachments.decidim_participatory_processes.rb │ ├── 20200912130745_add_private_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130746_add_reference_to_processes.decidim_participatory_processes.rb │ ├── 20200912130747_add_cta_url_and_text_to_steps.decidim_participatory_processes.rb │ ├── 20200912130748_add_area_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130749_add_scope_type_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130750_add_show_metrics_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130751_index_foreign_keys_in_decidim_attachments.decidim_participatory_processes.rb │ ├── 20200912130752_index_foreign_keys_in_decidim_participatory_process_user_roles.decidim_participatory_processes.rb │ ├── 20200912130753_index_foreign_keys_in_decidim_participatory_processes.decidim_participatory_processes.rb │ ├── 20200912130754_add_assemblies.decidim_assemblies.rb │ ├── 20200912130755_add_scopes_enabled_to_assemblies.decidim_assemblies.rb │ ├── 20200912130756_add_assembly_user_roles.decidim_assemblies.rb │ ├── 20200912130757_add_private_to_assemblies.decidim_assemblies.rb │ ├── 20200912130758_add_reference_to_assemblies.decidim_assemblies.rb │ ├── 20200912130759_add_area_to_assemblies.decidim_assemblies.rb │ ├── 20200912130760_add_parent_child_relation_to_assemblies.decidim_assemblies.rb │ ├── 20200912130761_add_fields_to_assemblies.decidim_assemblies.rb │ ├── 20200912130762_add_assembly_members.decidim_assemblies.rb │ ├── 20200912130763_assembly_member_belongs_to_user.decidim_assemblies.rb │ ├── 20200912130764_update_assembly_members_index.decidim_assemblies.rb │ ├── 20200912130765_reset_negative_children_count_counters.decidim_assemblies.rb │ ├── 20200912130766_create_decidim_assembly_types.decidim_assemblies.rb │ ├── 20200912130767_migrate_decidim_assembly_types.decidim_assemblies.rb │ ├── 20200912130768_index_foreign_keys_in_decidim_assemblies.decidim_assemblies.rb │ ├── 20200912130769_index_foreign_keys_in_decidim_assembly_user_roles.decidim_assemblies.rb │ ├── 20200912130770_remove_legacy_decidim_assembly_type.decidim_assemblies.rb │ ├── 20200912130771_create_decidim_assemblies_settings.decidim_assemblies.rb │ ├── 20200912130772_create_decidim_pages.decidim_pages.rb │ ├── 20200912130773_add_commentable_to_pages.decidim_pages.rb │ ├── 20200912130774_remove_commentable_flag_from_pages.decidim_pages.rb │ ├── 20200912130775_remove_page_feature_titles.decidim_pages.rb │ ├── 20200912130776_rename_features_to_components_at_pages.decidim_pages.rb │ ├── 20200912130777_create_comments.decidim_comments.rb │ ├── 20200912130778_add_depth_to_comments.decidim_comments.rb │ ├── 20200912130779_add_alignment_to_comments.decidim_comments.rb │ ├── 20200912130780_create_comment_votes.decidim_comments.rb │ ├── 20200912130781_add_user_group_id_to_comments.decidim_comments.rb │ ├── 20200912130782_add_root_commentable_to_comments.decidim_comments.rb │ ├── 20200912130783_update_root_commentable_for_comments.decidim_comments.rb │ ├── 20200912130784_set_root_commentable_null_constraints.decidim_comments.rb │ ├── 20200912130785_fix_user_groups_ids_in_comments.decidim_comments.rb │ ├── 20200912130786_make_authors_polymorphic_for_comments.decidim_comments.rb │ ├── 20200912130787_make_author_polymorphic_for_comment_votes.decidim_comments.rb │ ├── 20200912130788_index_foreign_keys_in_decidim_comments_comments.decidim_comments.rb │ ├── 20200912130789_make_comments_handle_i18n.decidim_comments.rb │ ├── 20200912130790_create_meetings.decidim_meetings.rb │ ├── 20200912130791_close_a_meeting.decidim_meetings.rb │ ├── 20200912130792_add_latitude_and_longitude_to_meetings.decidim_meetings.rb │ ├── 20200912130793_remove_short_description_from_meetings.decidim_meetings.rb │ ├── 20200912130794_add_reference_to_meetings.decidim_meetings.rb │ ├── 20200912130795_remove_not_null_reference_meetings.decidim_meetings.rb │ ├── 20200912130796_migrate_meetings_category.decidim_meetings.rb │ ├── 20200912130797_add_registration_attributes_to_meetings.decidim_meetings.rb │ ├── 20200912130798_create_registrations.decidim_meetings.rb │ ├── 20200912130799_rename_features_to_components_at_meetings.decidim_meetings.rb │ ├── 20200912130800_add_fields_for_registrations.decidim_meetings.rb │ ├── 20200912130801_add_meeting_types.decidim_meetings.rb │ ├── 20200912130802_add_organizer_to_meetings.decidim_meetings.rb │ ├── 20200912130803_create_meetings_minutes.decidim_meetings.rb │ ├── 20200912130804_add_services_to_meetings.decidim_meetings.rb │ ├── 20200912130805_create_decidim_agendas.decidim_meetings.rb │ ├── 20200912130806_create_decidim_agenda_items.decidim_meetings.rb │ ├── 20200912130807_create_decidim_meetings_invites.decidim_meetings.rb │ ├── 20200912130808_add_code_to_decidim_meetings_registrations.decidim_meetings.rb │ ├── 20200912130809_add_validated_at_to_decidim_meetings_registrations.decidim_meetings.rb │ ├── 20200912130810_add_registration_form_enabled_to_decidim_meetings.decidim_meetings.rb │ ├── 20200912130811_add_upcoming_events_as_content_block.decidim_meetings.rb │ ├── 20200912130812_add_questionnaire_to_existing_meetings.decidim_meetings.rb │ ├── 20200912130813_add_user_group_to_meetings_registrations.decidim_meetings.rb │ ├── 20200912130814_index_foreign_keys_in_decidim_meetings_registrations.decidim_meetings.rb │ ├── 20200912130815_add_author_to_meetings.decidim_meetings.rb │ ├── 20200912130816_create_meeting_services_table.decidim_meetings.rb │ ├── 20200912130817_move_meeting_services_to_own_model.decidim_meetings.rb │ ├── 20200912130818_create_decidim_proposals.decidim_proposals.rb │ ├── 20200912130819_create_proposal_votes.decidim_proposals.rb │ ├── 20200912130820_add_text_search_indexes.decidim_proposals.rb │ ├── 20200912130821_add_counter_cache_votes_to_proposals.decidim_proposals.rb │ ├── 20200912130822_add_user_group_id_to_proposals.decidim_proposals.rb │ ├── 20200912130823_add_answers_to_proposals.decidim_proposals.rb │ ├── 20200912130824_add_index_to_decidim_proposals_proposals_proposal_votes_count.decidim_proposals.rb │ ├── 20200912130825_create_proposal_reports.decidim_proposals.rb │ ├── 20200912130826_add_report_count_to_proposals.decidim_proposals.rb │ ├── 20200912130827_add_reference_to_proposals.decidim_proposals.rb │ ├── 20200912130828_add_hidden_at_to_proposals.decidim_proposals.rb │ ├── 20200912130829_add_geolocalization_fields_to_proposals.decidim_proposals.rb │ ├── 20200912130830_migrate_proposal_reports_data_to_reports.decidim_proposals.rb │ ├── 20200912130831_remove_not_null_reference_proposals.decidim_proposals.rb │ ├── 20200912130832_migrate_proposals_category.decidim_proposals.rb │ ├── 20200912130833_create_proposal_endorsements.decidim_proposals.rb │ ├── 20200912130834_add_counter_cache_endorsements_to_proposals.decidim_proposals.rb │ ├── 20200912130835_enable_pg_trgm_extension_for_proposals.decidim_proposals.rb │ ├── 20200912130836_add_published_at_to_proposals.decidim_proposals.rb │ ├── 20200912130837_create_decidim_proposal_notes.decidim_proposals.rb │ ├── 20200912130838_add_index_created_at_proposal_notes.decidim_proposals.rb │ ├── 20200912130839_rename_features_to_components_at_proposals.decidim_proposals.rb │ ├── 20200912130840_create_decidim_proposals_collaborative_drafts.decidim_proposals.rb │ ├── 20200912130841_fix_nil_threshold_per_proposal.decidim_proposals.rb │ ├── 20200912130842_add_counter_cache_coauthorships_to_proposals.decidim_proposals.rb │ ├── 20200912130843_move_authorships_to_coauthorships.decidim_proposals.rb │ ├── 20200912130844_remove_authorships_from_proposals.decidim_proposals.rb │ ├── 20200912130845_create_collaborative_draft_collaborator_requests.decidim_proposals.rb │ ├── 20200912130846_add_counter_cache_coauthorships_to_collaborative_drafts.decidim_proposals.rb │ ├── 20200912130847_remove_index_counter_cache_coauthorships_to_proposals.decidim_proposals.rb │ ├── 20200912130848_create_participatory_texts.decidim_proposals.rb │ ├── 20200912130849_add_position_to_proposals.decidim_proposals.rb │ ├── 20200912130850_add_participatory_text_level_to_proposals.decidim_proposals.rb │ ├── 20200912130851_fix_user_groups_ids_in_proposals_endorsements.decidim_proposals.rb │ ├── 20200912130852_add_temporary_votes.decidim_proposals.rb │ ├── 20200912130853_add_organization_as_author.decidim_proposals.rb │ ├── 20200912130854_make_author_polymorhpic_for_proposal_endorsements.decidim_proposals.rb │ ├── 20200912130855_add_created_in_meeting.decidim_proposals.rb │ ├── 20200912130856_use_md5_indexes.decidim_proposals.rb │ ├── 20200912130857_add_endorsements_counter_cache_to_proposals.decidim_proposals.rb │ ├── 20200912130858_move_proposal_endorsements_to_core_endorsements.decidim_proposals.rb │ ├── 20200912130859_drop_proposal_endorsements.decidim_proposals.rb │ ├── 20200912130860_add_proposal_valuation_assignments.decidim_proposals.rb │ ├── 20200912130861_add_costs_to_proposals.decidim_proposals.rb │ ├── 20200912130862_sync_proposals_state_with_amendments_state.decidim_proposals.rb │ ├── 20200912130863_add_state_published_at_to_proposals.decidim_proposals.rb │ ├── 20200912130864_publish_existing_proposals_state.decidim_proposals.rb │ ├── 20200912130865_move_proposals_fields_to_i18n.decidim_proposals.rb │ ├── 20200912130866_move_proposal_endorsed_event_notifications_to_resource_endorsed_event.decidim_proposals.rb │ ├── 20200912130867_create_projects.decidim_budgets.rb │ ├── 20200912130868_create_orders.decidim_budgets.rb │ ├── 20200912130869_create_line_items.decidim_budgets.rb │ ├── 20200912130870_remove_short_description_from_decidim_projects.decidim_budgets.rb │ ├── 20200912130871_add_reference_to_projects.decidim_budgets.rb │ ├── 20200912130872_remove_not_null_reference_budgets.decidim_budgets.rb │ ├── 20200912130873_migrate_projects_category.decidim_budgets.rb │ ├── 20200912130874_rename_features_to_components_at_budgets.decidim_budgets.rb │ ├── 20200912130875_use_big_ints_for_budgets.decidim_budgets.rb │ ├── 20200912130876_create_decidim_surveys.decidim_surveys.rb │ ├── 20200912130877_create_decidim_survey_questions.decidim_surveys.rb │ ├── 20200912130878_create_decidim_survey_answers.decidim_surveys.rb │ ├── 20200912130879_add_position_to_surveys_questions.decidim_surveys.rb │ ├── 20200912130880_add_mandatory_to_surveys_questions.decidim_surveys.rb │ ├── 20200912130881_add_question_type_to_surveys_questions.decidim_surveys.rb │ ├── 20200912130882_add_answer_options_to_surveys_questions.decidim_surveys.rb │ ├── 20200912130883_rename_features_to_components_at_surveys.decidim_surveys.rb │ ├── 20200912130884_add_max_choices_to_survey_questions.decidim_surveys.rb │ ├── 20200912130885_add_description_to_decidim_survey_questions.decidim_surveys.rb │ ├── 20200912130886_add_choices_to_decidim_survey_answers.decidim_surveys.rb │ ├── 20200912130887_create_decidim_survey_answer_options.decidim_surveys.rb │ ├── 20200912130888_create_decidim_survey_answer_choices.decidim_surveys.rb │ ├── 20200912130889_add_free_text_to_survey_answer_options.decidim_surveys.rb │ ├── 20200912130890_add_custom_body_to_survey_answer_choices.decidim_surveys.rb │ ├── 20200912130891_add_position_to_decidim_survey_answer_choices.decidim_surveys.rb │ ├── 20200912130892_check_legacy_tables.decidim_surveys.rb │ ├── 20200912130893_remove_survey_answer_choices.decidim_surveys.rb │ ├── 20200912130894_remove_survey_answer_options.decidim_surveys.rb │ ├── 20200912130895_remove_survey_answers.decidim_surveys.rb │ ├── 20200912130896_remove_survey_questions.decidim_surveys.rb │ ├── 20200912130897_remove_survey_columns.decidim_surveys.rb │ ├── 20200912130898_create_accountability_statuses.decidim_accountability.rb │ ├── 20200912130899_create_accountability_results.decidim_accountability.rb │ ├── 20200912130900_add_description_and_progress_to_statuses.decidim_accountability.rb │ ├── 20200912130901_create_accountability_timeline_entries.decidim_accountability.rb │ ├── 20200912130902_migrate_accountability_results_category.decidim_accountability.rb │ ├── 20200912130903_add_children_counter_cache_to_results.decidim_accountability.rb │ ├── 20200912130904_migrate_old_results.decidim_accountability.rb │ ├── 20200912130905_rename_features_to_components_at_accountability.decidim_accountability.rb │ ├── 20200912130906_add_weight_to_results.decidim_accountability.rb │ ├── 20200912130907_add_external_id_to_results.decidim_accountability.rb │ ├── 20200912130908_index_foreign_keys_in_decidim_accountability_results.decidim_accountability.rb │ ├── 20200912130909_create_debates.decidim_debates.rb │ ├── 20200912130910_add_debate_information_updates.decidim_debates.rb │ ├── 20200912130911_add_author_to_debates.decidim_debates.rb │ ├── 20200912130912_add_reference_to_debates.decidim_debates.rb │ ├── 20200912130913_add_user_group_author_to_debates.decidim_debates.rb │ ├── 20200912130914_drop_category_id_column.decidim_debates.rb │ ├── 20200912130915_rename_features_to_components_at_debates.decidim_debates.rb │ ├── 20200912130916_fix_user_groups_ids_on_debates.decidim_debates.rb │ ├── 20200912130917_add_organization_as_author_to_debates.decidim_debates.rb │ ├── 20200912130918_index_foreign_keys_in_decidim_debates_debates.decidim_debates.rb │ ├── 20200912130919_close_debates.decidim_debates.rb │ ├── 20200912130920_fix_debates_i18n_fields.decidim_debates.rb │ ├── 20200912130921_add_endorsable_to_debates.decidim_debates.rb │ ├── 20200912130922_create_decidim_module_sortitions_sortitions.decidim_sortitions.rb │ ├── 20200912130923_add_witnesses_to_sortitions.decidim_sortitions.rb │ ├── 20200912130924_add_additional_info_to_sortitions.decidim_sortitions.rb │ ├── 20200912130925_add_author_to_sortitions.decidim_sortitions.rb │ ├── 20200912130926_add_reference_to_sortitions.decidim_sortitions.rb │ ├── 20200912130927_add_title_to_sortition.decidim_sortitions.rb │ ├── 20200912130928_drop_decidim_category_id_from_sortitions.decidim_sortitions.rb │ ├── 20200912130929_add_cancel_data_to_sortition.decidim_sortitions.rb │ ├── 20200912130930_make_sortition_reference_nullable.decidim_sortitions.rb │ ├── 20200912130931_add_candidate_proposals_to_sortitions.decidim_sortitions.rb │ ├── 20200912130932_rename_sortitions_table.decidim_sortitions.rb │ ├── 20200912130933_fix_sortitions_feature.decidim_sortitions.rb │ ├── 20200912130934_fix_sortitions_proposal_feature.decidim_sortitions.rb │ ├── 20200912130935_make_sortitions_authors_polymorphic.decidim_sortitions.rb │ ├── 20200912130936_index_foreign_keys_in_decidim_sortitions_sortitions.decidim_sortitions.rb │ ├── 20200912130937_create_decidim_blogs_posts.decidim_blogs.rb │ ├── 20200912130938_add_author_to_decidim_blogs_posts.decidim_blogs.rb │ ├── 20200912130939_make_blogposts_authors_polymorphics.decidim_blogs.rb │ ├── 20200912130940_add_user_group_author_to_blogs.decidim_blogs.rb │ ├── 20200912130941_add_endorsements_counter_cache_to_blogs.decidim_blogs.rb │ ├── 20200912130942_index_foreign_keys_in_decidim_blogs_posts.decidim_blogs.rb │ ├── 20201019071950_create_decidim_share_tokens.decidim.rb │ ├── 20201019071951_add_file_upload_settings_to_decidim_organizations.decidim.rb │ ├── 20201019071952_remove_notifications_with_continuity_badge.decidim.rb │ ├── 20201019071953_fix_attachments_titles.decidim_participatory_processes.rb │ ├── 20201019071954_add_commentable_counter_cache_to_comments.decidim_comments.rb │ ├── 20201019071955_add_commentable_counter_cache_to_meetings.decidim_meetings.rb │ ├── 20201019071956_add_commentable_counter_cache_to_proposals.decidim_proposals.rb │ ├── 20201019071957_fix_proposals_data_to_ensure_title_and_body_are_hashes.decidim_proposals.rb │ ├── 20201019071958_fix_proposals_data.decidim_proposals.rb │ ├── 20201019071959_create_decidim_budgets.decidim_budgets.rb │ ├── 20201019071960_rename_budget_to_budget_ammount.decidim_budgets.rb │ ├── 20201019071961_add_budget_reference_to_project.decidim_budgets.rb │ ├── 20201019071962_add_budget_reference_to_order.decidim_budgets.rb │ ├── 20201019071963_move_budgets_to_own_model.decidim_budgets.rb │ ├── 20201019071964_add_scope_to_budgets.decidim_budgets.rb │ ├── 20201019071965_add_selected_at_to_project.decidim_budgets.rb │ ├── 20201019071966_votes_enabled_to_votes_choices.decidim_budgets.rb │ ├── 20201019071967_add_commentable_counter_cache_to_projects.decidim_budgets.rb │ ├── 20201019071968_add_commentable_counter_cache_to_results.decidim_accountability.rb │ ├── 20201019071969_add_commentable_counter_cache_to_debates.decidim_debates.rb │ ├── 20201019071970_add_cached_comment_metadata_to_debates.decidim_debates.rb │ ├── 20201019071971_add_commentable_counter_cache_to_sortitions.decidim_sortitions.rb │ ├── 20201019071972_add_commentable_counter_cache_to_posts.decidim_blogs.rb │ ├── 20201029125846_change_direct_message_types_to_users.rb │ ├── 20210417144649_invalidate_all_sessions_for_deleted_users.decidim.rb │ ├── 20210417144650_add_salt_to_decidim_forms_questionnaires.decidim_forms.rb │ ├── 20210417144651_fix_meetings_registration_terms.decidim_meetings.rb │ ├── 20210417144652_add_salt_to_decidim_meetings.decidim_meetings.rb │ ├── 20210417144653_fix_answered_proposals_after_copy.decidim_proposals.rb │ ├── 20210417144654_fix_counters_for_copied_proposals.decidim_proposals.rb │ ├── 20210712102322_create_decidim_awesome_config.decidim_decidim_awesome.rb │ ├── 20210712102323_create_awesome_editor_images.decidim_decidim_awesome.rb │ ├── 20210712102324_create_decidim_awesome_config_constraints.decidim_decidim_awesome.rb │ ├── 20211011230000_update_organizations_available_authorizations.rb │ ├── 20211121050004_remove_show_statistics_from_organizations.decidim.rb │ ├── 20211121050005_create_decidim_user_moderations.decidim.rb │ ├── 20211121050006_create_decidim_user_reports.decidim.rb │ ├── 20211121050007_add_suspension_fields_to_decidim_users.decidim.rb │ ├── 20211121050008_create_decidim_user_suspensions.decidim.rb │ ├── 20211121050009_add_current_suspension_id_to_decidim_users.decidim.rb │ ├── 20211121050010_add_reported_content_to_moderations.decidim.rb │ ├── 20211121050011_add_locale_to_moderation_reports.decidim.rb │ ├── 20211121050012_encrypt_authorization_metadatas.decidim.rb │ ├── 20211121050013_add_allow_public_access_to_static_pages.decidim.rb │ ├── 20211121050014_update_table_block_user_functionality.decidim.rb │ ├── 20211121050015_rename_decidim_user_fields_for_block_functionality.decidim.rb │ ├── 20211121050016_add_email_on_moderations_to_users.decidim.rb │ ├── 20211121050017_add_followable_counter_cache_to_users.decidim.rb │ ├── 20211121050018_add_max_characters_to_decidim_forms_questions.decidim_forms.rb │ ├── 20211121050019_create_decidim_verifications_conflicts.decidim_verifications.rb │ ├── 20211121050020_add_hashtag_to_participatory_process_groups.decidim_participatory_processes.rb │ ├── 20211121050021_add_metadata_columns_to_participatory_process_groups.decidim_participatory_processes.rb │ ├── 20211121050022_rename_name_column_to_title_in_decidim_participatory_process_groups.decidim_participatory_processes.rb │ ├── 20211121050023_add_promoted_flag_to_decidim_participatory_process_groups.decidim_participatory_processes.rb │ ├── 20211121050024_add_weight_field_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20211121050025_add_followable_counter_cache_to_participatory_processes.decidim_participatory_processes.rb │ ├── 20211121050026_add_weight_field_to_assembly.decidim_assemblies.rb │ ├── 20211121050027_add_followable_counter_cache_to_assemblies.decidim_assemblies.rb │ ├── 20211121050028_add_online_meeting_url.decidim_meetings.rb │ ├── 20211121050029_add_type_of_meeting.decidim_meetings.rb │ ├── 20211121050030_add_registration_type_and_url_to_meetings.decidim_meetings.rb │ ├── 20211121050031_add_followable_counter_cache_to_meetings.decidim_meetings.rb │ ├── 20211121050032_add_followable_counter_cache_to_proposals.decidim_proposals.rb │ ├── 20211121050033_add_followable_counter_cache_to_collaborative_drafts.decidim_proposals.rb │ ├── 20211121050034_add_followable_counter_cache_to_budgets.decidim_budgets.rb │ ├── 20211121050035_add_scope_to_debates_debate.decidim_debates.rb │ ├── 20211121050036_archive_debates.decidim_debates.rb │ ├── 20211121050037_revert_archive_debates.decidim_debates.rb │ ├── 20211121050038_add_followable_counter_cache_to_debates.decidim_debates.rb │ ├── 20211121050039_add_followable_counter_cache_to_blogs.decidim_blogs.rb │ ├── 20220324111735_create_decidim_term_customizer_translation_sets.decidim_term_customizer.rb │ ├── 20220324111736_create_decidim_term_customizer_translations.decidim_term_customizer.rb │ ├── 20220324111737_create_decidim_term_customizer_constraints.decidim_term_customizer.rb │ ├── 20220508115053_add_external_domain_whitelist_to_organization.decidim.rb │ ├── 20220508115054_create_active_storage_tables.decidim.rb │ ├── 20220508115055_allow_null_organization_logo_column_in_oauth_applications_table.decidim.rb │ ├── 20220508115056_add_enable_participatory_space_filters_to_organization.decidim.rb │ ├── 20220508115057_create_decidim_content_block_attachments.decidim.rb │ ├── 20220508115058_fix_blocked_user_names_in_action_log.decidim.rb │ ├── 20220508115059_set_position_to_question_matrix_rows.decidim_forms.rb │ ├── 20220508115060_allow_null_file_column_in_decidim_attachments_table.decidim_participatory_processes.rb │ ├── 20220508115061_add_announcement_to_assemblies.decidim_assemblies.rb │ ├── 20220508115062_add_participatory_process_to_comments.decidim_comments.rb │ ├── 20220508115063_add_deleted_at_column_to_comments.decidim_comments.rb │ ├── 20220508115064_add_registration_custom_content_to_meetings.decidim_meetings.rb │ ├── 20220508115065_add_published_at_to_meetings.decidim_meetings.rb │ ├── 20220508115066_update_published_at_to_existing_meetings.decidim_meetings.rb │ ├── 20220508115067_add_public_participation_to_decidim_meetings_registrations.decidim_meetings.rb │ ├── 20220508115068_merge_meetings_minutes_into_meetings_table.decidim_meetings.rb │ ├── 20220508115069_create_decidim_meetings_polls.decidim_meetings.rb │ ├── 20220508115070_drop_decidim_meetings_minutes_table.decidim_meetings.rb │ ├── 20220508115071_merge_minutes_with_closing_report_in_meetings_table.decidim_meetings.rb │ ├── 20220508115072_create_decidim_meetings_questionnaires.decidim_meetings.rb │ ├── 20220508115073_create_decidim_meetings_questions.decidim_meetings.rb │ ├── 20220508115074_create_decidim_meetings_answers.decidim_meetings.rb │ ├── 20220508115075_create_decidim_meetings_answer_options.decidim_meetings.rb │ ├── 20220508115076_create_decidim_meetings_answer_choices.decidim_meetings.rb │ ├── 20220508115077_add_status_to_meetings_questions.decidim_meetings.rb │ ├── 20220508115078_add_setting_embed_iframe_to_meetings.decidim_meetings.rb │ ├── 20220509082527_change_awesome_config_var_type.decidim_decidim_awesome.rb │ ├── 20221117104032_create_decidim_editor_images.decidim.rb │ ├── 20221117104033_add_timestamps_to_content_blocks.decidim.rb │ ├── 20221117104034_remove_designation_mode_from_assembly_members.decidim_assemblies.rb │ ├── 20221117104035_add_comments_availability_columns_to_meetings_table.decidim_meetings.rb │ ├── 20221117104036_add_state_field_to_meeting.decidim_meetings.rb │ ├── 20221117104037_add_iframe_access_level_to_decidim_meetings.decidim_meetings.rb │ ├── 20221117104038_transform_show_embedded_iframe_column.decidim_meetings.rb │ ├── 20221117104039_rename_upcoming_events_content_block_to_upcoming_meetings.decidim_meetings.rb │ ├── 20221117104040_add_comments_availability_columns_to_debates_table.decidim_debates.rb │ ├── 20230426065808_add_polis_site_id_to_organizations.decidim_polis.rb │ ├── 20230426065809_add_polis_site_url_to_organizations.decidim_polis.rb │ ├── 20230522090010_remove_polis_site_id_and_url.decidim_polis.rb │ ├── 20230719081051_add_service_name_to_active_storage_blobs.decidim.rb │ ├── 20230719081052_create_active_storage_variant_records.decidim.rb │ ├── 20230719081053_create_decidim_reminders.decidim.rb │ ├── 20230719081054_create_decidim_reminder_records.decidim.rb │ ├── 20230719081055_create_decidim_reminder_deliveries.decidim.rb │ ├── 20230719081056_change_required_description_categories.decidim.rb │ ├── 20230719081057_add_notification_settings_to_users.decidim.rb │ ├── 20230719081058_add_notifications_sending_frequency_to_users.decidim.rb │ ├── 20230719081059_add_digest_sent_at_to_users.decidim.rb │ ├── 20230719081060_add_index_to_decidim_users_notifications_sending_frequency.decidim.rb │ ├── 20230719081061_drop_emails_on_notifications_flag_from_user.decidim.rb │ ├── 20230719081062_add_previous_passwords_to_users.decidim.rb │ ├── 20230719081063_create_decidim_short_links.decidim.rb │ ├── 20230719081064_create_decidim_participatory_process_types.decidim_participatory_processes.rb │ ├── 20230719081065_remove_not_null_on_customize_registration_email.decidim_meetings.rb │ ├── 20230719081066_add_geolocalization_fields_to_projects.decidim_budgets.rb │ ├── 20230719081067_add_title_to_timeline_entries.decidim_accountability.rb │ ├── 20230719081068_move_legacy_description_to_title_of_timeline_entries.decidim_accountability.rb │ ├── 20230808035643_create_decidim_templates.decidim_templates.rb │ ├── 20240128143437_create_decidim_navigation_maps_blueprints.decidim_navigation_maps.rb │ ├── 20240128143438_add_title_to_navigation_maps_blueprints.decidim_navigation_maps.rb │ ├── 20240128143439_create_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb │ ├── 20240128143440_add_link_type_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb │ ├── 20240128143441_add_area_id_to_decidim_navigation_maps_blueprint_areas.decidim_navigation_maps.rb │ ├── 20240128143442_add_color_to_navigation_maps_blueprint_areas.decidim_navigation_maps.rb │ ├── 20240128143443_add_reference_to_content_block_to_blueprints_table.decidim_navigation_maps.rb │ ├── 20240128143444_add_height_to_navigation_maps_blueprints.decidim_navigation_maps.rb │ ├── 20240311174006_create_decidim_authorization_transfers.decidim.rb │ ├── 20240311174007_rename_terms_of_use.decidim.rb │ ├── 20240311174008_add_content_policy_to_decidim_organizations.decidim.rb │ ├── 20240311174009_change_states_on_amendments.decidim.rb │ ├── 20240311174010_change_states_on_reminder_records.decidim.rb │ ├── 20240311174012_remove_official_img_header.decidim.rb │ ├── 20240311174013_change_steps_dates_to_datetime.decidim_participatory_processes.rb │ ├── 20240311174014_change_states_on_collaborative_drafts.decidim_proposals.rb │ ├── 20240311174015_change_states_on_proposals.decidim_proposals.rb │ ├── 20240311174016_change_types_and_registration_types_on_meetings.decidim_meetings.rb │ ├── 20240311174017_add_field_values_and_target_to_decidim_templates.decidim_templates.rb │ ├── 20240311174018_add_published_at_to_decidim_blogs_posts.decidim_blogs.rb │ ├── 20240311174019_create_decidim_awesome_vote_weights.decidim_decidim_awesome.rb │ ├── 20240311174020_create_decidim_awesome_proposal_extra_fields.decidim_decidim_awesome.rb │ ├── 20240311174021_rename_editor_images_awesome_config.decidim_decidim_awesome.rb │ ├── 20240713180919_enable_pg_bigm_extension.rb │ ├── 20240729104238_change_default_value_for_decidim_endorsements.decidim.rb │ ├── 20240729104239_add_comment_vote_counter_cache_to_comments.decidim_comments.rb │ ├── 20240729104240_add_valuation_assignments_count_to_decidim_proposals_proposals.decidim_proposals.rb │ ├── 20241203073347_add_decidim_awesome_proposal_private_fields.decidim_decidim_awesome.rb │ ├── 20241203073348_add_decidim_awesome_proposal_private_fields_date.decidim_decidim_awesome.rb │ ├── 20250312050012_rename_external_domain_whitelist_to_external_domain_allowlist.decidim.rb │ ├── 20250312050013_remove_show_in_footer_in_static_pages.decidim.rb │ ├── 20250312050014_change_name_on_decidim_organizations.decidim.rb │ ├── 20250312050015_add_answer_options_counter_cache_to_questions.decidim_forms.rb │ ├── 20250312050016_add_matrix_row_counter_cache_to_questions.decidim_forms.rb │ ├── 20250312050017_add_display_conditions_counter_cache_to_questions.decidim_forms.rb │ ├── 20250312050018_add_display_conditions_for_other_questions_counter_cache_to_questions.decidim_forms.rb │ ├── 20250312050019_add_link_to_decidim_attachments.decidim_participatory_processes.rb │ ├── 20250312050020_change_show_statistics_from_decidim_assemblies.decidim_assemblies.rb │ ├── 20250312050021_add_withdrawn_at_field_to_proposals.decidim_proposals.rb │ ├── 20250312050022_create_decidim_proposals_proposal_state.decidim_proposals.rb │ ├── 20250312050023_add_state_id_to_decidim_proposals_proposals.decidim_proposals.rb │ ├── 20250312050024_remove_state_from_decidim_proposals_proposals.decidim_proposals.rb │ ├── 20250312050025_create_default_proposal_states.decidim_proposals.rb │ ├── 20250312050026_change_color_fields_on_proposals_states.decidim_proposals.rb │ └── 20250312050027_add_withdrawn_fields_on_meetings.decidim_meetings.rb ├── schema.rb └── seeds.rb ├── decidim-user_extension ├── Gemfile ├── LICENSE-AGPLv3.txt ├── README.md ├── Rakefile ├── app │ ├── commands │ │ └── concerns │ │ │ └── decidim │ │ │ └── user_extension │ │ │ ├── create_commands_overrides.rb │ │ │ ├── create_omniauth_commands_overrides.rb │ │ │ ├── destroy_commands_overrides.rb │ │ │ └── update_commands_overrides.rb │ ├── controllers │ │ └── decidim │ │ │ ├── user_extension │ │ │ ├── admin │ │ │ │ ├── application_controller.rb │ │ │ │ └── officializations │ │ │ │ │ └── user_extensions_controller.rb │ │ │ └── application_controller.rb │ │ │ └── verifications │ │ │ └── user_extension │ │ │ ├── admin │ │ │ ├── pending_authorizations_controller.rb │ │ │ └── postages_controller.rb │ │ │ └── authorizations_controller.rb │ ├── forms │ │ ├── concerns │ │ │ └── decidim │ │ │ │ └── user_extension │ │ │ │ └── forms_definitions.rb │ │ └── decidim │ │ │ ├── user_extension_form.rb │ │ │ └── verifications │ │ │ └── user_extension │ │ │ ├── address_form.rb │ │ │ ├── confirmation_form.rb │ │ │ └── postage_form.rb │ ├── helpers │ │ └── decidim │ │ │ └── user_extension │ │ │ └── application_helper.rb │ ├── jobs │ │ └── decidim │ │ │ └── user_extension │ │ │ └── application_job.rb │ ├── mailers │ │ └── decidim │ │ │ └── user_extension │ │ │ └── application_mailer.rb │ ├── models │ │ └── decidim │ │ │ └── user_extension │ │ │ └── application_record.rb │ ├── overrides │ │ └── decidim │ │ │ └── admin │ │ │ └── officializations │ │ │ └── index │ │ │ ├── user_extension_modal_override.html.erb.deface │ │ │ └── user_extension_override.html.erb.deface │ ├── packs │ │ ├── entrypoints │ │ │ ├── decidim_user_extension.js │ │ │ └── decidim_user_extension.scss │ │ ├── images │ │ │ └── decidim │ │ │ │ └── user_extension │ │ │ │ └── .keep │ │ ├── src │ │ │ └── decidim │ │ │ │ └── user_extension │ │ │ │ └── application.js │ │ └── stylesheets │ │ │ └── decidim │ │ │ └── user_extension │ │ │ ├── _show_user_extension.scss │ │ │ └── application.scss │ ├── presenters │ │ └── decidim │ │ │ └── verifications │ │ │ └── user_extension │ │ │ └── authorization_presenter.rb │ └── views │ │ ├── decidim │ │ ├── account │ │ │ ├── _user_extension.html.erb │ │ │ └── show.html.erb │ │ ├── devise │ │ │ └── registrations │ │ │ │ ├── _user_extension.html.erb │ │ │ │ └── new.html.erb │ │ ├── user_extension │ │ │ └── admin │ │ │ │ └── officializations │ │ │ │ ├── _show_user_extension_modal.html.erb │ │ │ │ └── user_extensions │ │ │ │ └── show.html.erb │ │ └── verifications │ │ │ └── user_extension │ │ │ ├── admin │ │ │ └── pending_authorizations │ │ │ │ └── index.html.erb │ │ │ └── authorizations │ │ │ ├── edit.html.erb │ │ │ └── new.html.erb │ │ └── layouts │ │ └── decidim │ │ └── user_extension │ │ └── application.html.erb ├── bin │ └── rails ├── config │ ├── i18n-tasks.yml │ ├── locales │ │ ├── en.yml │ │ └── ja.yml │ └── routes.rb ├── decidim-user_extension.gemspec ├── lib │ └── decidim │ │ ├── user_extension.rb │ │ ├── user_extension │ │ ├── admin.rb │ │ ├── admin_engine.rb │ │ ├── concerns │ │ │ └── controllers │ │ │ │ ├── add_user_extension_form.rb │ │ │ │ ├── needs_user_extension.rb │ │ │ │ └── omniauth_add_user_extension_form.rb │ │ ├── engine.rb │ │ └── version.rb │ │ └── verifications │ │ ├── user_extension.rb │ │ └── user_extension │ │ ├── admin.rb │ │ ├── admin_engine.rb │ │ ├── engine.rb │ │ └── workflow.rb └── spec │ ├── i18n_spec.rb │ └── spec_helper.rb ├── docker-compose.yml ├── docs ├── DEPLOYMENT.md ├── DEVELOPMENT.md ├── INFRA.md └── UPGRADE.md ├── entrypoint ├── etc └── nginx │ ├── conf.d │ ├── default.conf │ └── timeout.conf │ └── nginx.conf ├── ignore_spec ├── forms │ └── extended_registration_form_spec.rb └── sytem │ ├── admin_officializations_user_extension_spec.rb │ ├── comment_sort_spec.rb │ └── needs_user_extension_spec.rb ├── lib ├── assets │ └── .keep ├── decidim │ ├── cfj │ │ ├── test │ │ │ └── factories.rb │ │ └── url_converter.rb │ ├── content_parsers │ │ └── inline_images_parser.rb │ └── map │ │ └── provider │ │ └── static_map │ │ ├── cfj_osm.rb │ │ └── cfj_osm │ │ ├── bounding_box.rb │ │ ├── conversion.rb │ │ ├── map.rb │ │ └── tile_source.rb ├── slack_chat_messenger.rb └── tasks │ ├── .keep │ ├── comment.rake │ ├── delete.rake │ ├── download.rake │ ├── fix_signed_urls.rake │ ├── i18n_yaml.rake │ └── replace_to_null.rake ├── log └── .keep ├── omniauth-line_login ├── .gitignore ├── .rspec ├── .rubocop.yml ├── Gemfile ├── README.md ├── Rakefile ├── bin │ ├── console │ └── setup ├── lib │ ├── omniauth-line_login.rb │ └── omniauth │ │ ├── line_login │ │ ├── error.rb │ │ └── version.rb │ │ └── strategies │ │ └── line_login.rb ├── omniauth-line_login.gemspec ├── sig │ └── omniauth │ │ └── line_login.rbs └── spec │ └── spec_helper.rb ├── package.json ├── postcss.config.js ├── public ├── 422.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png └── robots.txt ├── spec ├── cells │ └── content_blocks │ │ └── map_cell_spec.rb ├── controllers │ └── decidim │ │ └── editor_images_controller_spec.rb ├── factories.rb ├── fixtures │ └── files │ │ ├── city.jpeg │ │ └── heic-image-file.heic ├── forms │ └── decidim │ │ ├── blogs │ │ └── admin │ │ │ └── post_form_spec.rb │ │ ├── proposals │ │ └── admin │ │ │ └── admin_proposal_form_spec.rb │ │ └── registration_form_nickname_spec.rb ├── lib │ └── decidim │ │ ├── cfj │ │ ├── s3_integration_spec.rb │ │ ├── s3_production_readiness_spec.rb │ │ ├── url_converter_edge_cases_spec.rb │ │ └── url_converter_spec.rb │ │ └── content_parsers │ │ ├── blob_parser_integration_spec.rb │ │ ├── blob_parser_spec.rb │ │ └── inline_images_parser_spec.rb ├── mailers │ ├── newsletter_mailer_spec.rb │ ├── notifications_digest_mailer_spec.rb │ └── reported_mailer_spec.rb ├── models │ └── decidim │ │ └── editor_image_spec.rb ├── presenters │ └── decidim │ │ └── notification_to_mailer_presenter_spec.rb ├── previewers │ └── heic_previewer_spec.rb ├── rails_helper.rb ├── shared │ └── proposal_form_examples.rb ├── spec_helper.rb ├── support │ └── active_storage_helpers.rb └── system │ ├── admin │ └── blog_post_image_handling_spec.rb │ ├── admin_officializations_user_extension_spec.rb │ ├── comment_sort_spec.rb │ ├── needs_user_extension_spec.rb │ ├── production_simulation_spec.rb │ ├── user_profile_spec.rb │ └── user_registration_nickname_spec.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── tsconfig.json ├── vendor ├── .keep └── imagemagick7 │ ├── README.md │ └── bin │ ├── convert │ └── mogrify └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-------bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/ISSUE_TEMPLATE/-------bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/-------improvement-suggestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/ISSUE_TEMPLATE/-------improvement-suggestions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/_build.yaml -------------------------------------------------------------------------------- /.github/workflows/_check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/_check.yaml -------------------------------------------------------------------------------- /.github/workflows/_deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/_deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/_release.yaml -------------------------------------------------------------------------------- /.github/workflows/brakeman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/brakeman.yaml -------------------------------------------------------------------------------- /.github/workflows/branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/branch.yaml -------------------------------------------------------------------------------- /.github/workflows/dependencies-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/dependencies-pr.yml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_rails.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.6 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE-AGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/LICENSE-AGPLv3.txt -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/Rakefile -------------------------------------------------------------------------------- /app/cells/decidim/assemblies/assembly_g_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/assemblies/assembly_g_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/card_g_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/card_g_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/comments/comment_form/opinion.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/comments/comment_form/opinion.erb -------------------------------------------------------------------------------- /app/cells/decidim/comments/last_comment_activity/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/comments/last_comment_activity/show.erb -------------------------------------------------------------------------------- /app/cells/decidim/comments/last_comment_activity_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/comments/last_comment_activity_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/content_blocks/last_comment/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/content_blocks/last_comment/show.erb -------------------------------------------------------------------------------- /app/cells/decidim/content_blocks/last_comment_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/content_blocks/last_comment_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/images_panel/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/images_panel/show.erb -------------------------------------------------------------------------------- /app/cells/decidim/last_comment_activities/show.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/last_comment_activities/show.erb -------------------------------------------------------------------------------- /app/cells/decidim/last_comment_activities_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/last_comment_activities_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/participatory_processes/process_g_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/participatory_processes/process_g_cell.rb -------------------------------------------------------------------------------- /app/cells/decidim/proposals/proposal_metadata_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/cells/decidim/proposals/proposal_metadata_cell.rb -------------------------------------------------------------------------------- /app/commands/decidim/accountability/destroy_all_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/accountability/destroy_all_results.rb -------------------------------------------------------------------------------- /app/commands/decidim/areas/destroy_all_areas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/areas/destroy_all_areas.rb -------------------------------------------------------------------------------- /app/commands/decidim/assemblies/destroy_all_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/assemblies/destroy_all_assemblies.rb -------------------------------------------------------------------------------- /app/commands/decidim/blogs/destroy_all_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/blogs/destroy_all_posts.rb -------------------------------------------------------------------------------- /app/commands/decidim/budgets/destroy_all_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/budgets/destroy_all_budgets.rb -------------------------------------------------------------------------------- /app/commands/decidim/comments/destroy_all_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/comments/destroy_all_comments.rb -------------------------------------------------------------------------------- /app/commands/decidim/debates/destroy_all_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/debates/destroy_all_debates.rb -------------------------------------------------------------------------------- /app/commands/decidim/destroy_all_attachments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/destroy_all_attachments.rb -------------------------------------------------------------------------------- /app/commands/decidim/gamifications/destroy_all_badges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/gamifications/destroy_all_badges.rb -------------------------------------------------------------------------------- /app/commands/decidim/meetings/destroy_all_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/meetings/destroy_all_meetings.rb -------------------------------------------------------------------------------- /app/commands/decidim/messaging/destroy_all_messages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/messaging/destroy_all_messages.rb -------------------------------------------------------------------------------- /app/commands/decidim/organizations/destroy_organization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/organizations/destroy_organization.rb -------------------------------------------------------------------------------- /app/commands/decidim/pages/destroy_all_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/pages/destroy_all_pages.rb -------------------------------------------------------------------------------- /app/commands/decidim/participatory_processes/destroy_all_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/participatory_processes/destroy_all_participatory_processes.rb -------------------------------------------------------------------------------- /app/commands/decidim/proposals/destroy_all_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/proposals/destroy_all_proposals.rb -------------------------------------------------------------------------------- /app/commands/decidim/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/search.rb -------------------------------------------------------------------------------- /app/commands/decidim/surveys/destroy_all_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/commands/decidim/surveys/destroy_all_surveys.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/decidim/debates/versions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/controllers/decidim/debates/versions_controller.rb -------------------------------------------------------------------------------- /app/controllers/decidim/editor_images_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/controllers/decidim/editor_images_controller.rb -------------------------------------------------------------------------------- /app/controllers/decidim_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/controllers/decidim_controller.rb -------------------------------------------------------------------------------- /app/forms/decidim/debates/close_debate_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/forms/decidim/debates/close_debate_form.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/decidim/cloudfront_logo_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/helpers/decidim/cloudfront_logo_helper.rb -------------------------------------------------------------------------------- /app/helpers/decidim/layout_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/helpers/decidim/layout_helper.rb -------------------------------------------------------------------------------- /app/helpers/decidim/menu_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/helpers/decidim/menu_helper.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/purge_component_cache_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/jobs/purge_component_cache_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/decidim/proposals/proposal_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/models/decidim/proposals/proposal_state.rb -------------------------------------------------------------------------------- /app/models/decidim/searchable_resource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/models/decidim/searchable_resource.rb -------------------------------------------------------------------------------- /app/packs/entrypoints/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/entrypoints/application.js -------------------------------------------------------------------------------- /app/packs/entrypoints/decidim_cfj_participatory_processes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/entrypoints/decidim_cfj_participatory_processes.js -------------------------------------------------------------------------------- /app/packs/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packs/src/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/packs/src/decidim/cfj/accordion-scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/cfj/accordion-scroll.js -------------------------------------------------------------------------------- /app/packs/src/decidim/cfj/editor/extensions/iframe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/cfj/editor/extensions/iframe/index.js -------------------------------------------------------------------------------- /app/packs/src/decidim/cfj/editor/extensions/simple_image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/cfj/editor/extensions/simple_image/index.js -------------------------------------------------------------------------------- /app/packs/src/decidim/cfj/editor/extensions/tag_edit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/cfj/editor/extensions/tag_edit/index.js -------------------------------------------------------------------------------- /app/packs/src/decidim/cfj/editor/extensions/tag_edit/text_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/cfj/editor/extensions/tag_edit/text_dialog.js -------------------------------------------------------------------------------- /app/packs/src/decidim/decidim_application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/decidim_application.js -------------------------------------------------------------------------------- /app/packs/src/decidim/editor/extensions/decidim_kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/editor/extensions/decidim_kit/index.js -------------------------------------------------------------------------------- /app/packs/src/decidim/editor/toolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/src/decidim/editor/toolbar.js -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/comment_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/cfj/comment_content.scss -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/forms.scss: -------------------------------------------------------------------------------- 1 | .radio-buttons{ 2 | margin-bottom: 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/cfj/header.scss -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/media_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/cfj/media_print.scss -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/tiptap_html_edit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/cfj/tiptap_html_edit.scss -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/cfj/typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/cfj/typography.scss -------------------------------------------------------------------------------- /app/packs/stylesheets/decidim/decidim_application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/packs/stylesheets/decidim/decidim_application.scss -------------------------------------------------------------------------------- /app/presenters/decidim/notification_to_mailer_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/presenters/decidim/notification_to_mailer_presenter.rb -------------------------------------------------------------------------------- /app/previewers/heic_previewer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/previewers/heic_previewer.rb -------------------------------------------------------------------------------- /app/queries/decidim/accountability/filtered_results.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/queries/decidim/accountability/filtered_results.rb -------------------------------------------------------------------------------- /app/queries/decidim/blogs/filtered_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/queries/decidim/blogs/filtered_posts.rb -------------------------------------------------------------------------------- /app/queries/decidim/debates/filtered_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/queries/decidim/debates/filtered_debates.rb -------------------------------------------------------------------------------- /app/uploaders/decidim/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/uploaders/decidim/image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/decidim/organization_mobile_logo_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/uploaders/decidim/organization_mobile_logo_uploader.rb -------------------------------------------------------------------------------- /app/views/decidim/admin/officializations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/admin/officializations/index.html.erb -------------------------------------------------------------------------------- /app/views/decidim/admin/organization_appearance/form/_images.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/admin/organization_appearance/form/_images.html.erb -------------------------------------------------------------------------------- /app/views/decidim/application/_document.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/application/_document.html.erb -------------------------------------------------------------------------------- /app/views/decidim/blogs/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/blogs/posts/show.html.erb -------------------------------------------------------------------------------- /app/views/decidim/debates/debates/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/debates/debates/show.html.erb -------------------------------------------------------------------------------- /app/views/decidim/devise/invitations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/devise/invitations/edit.html.erb -------------------------------------------------------------------------------- /app/views/decidim/participatory_processes/participatory_processes/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/participatory_processes/participatory_processes/show.html.erb -------------------------------------------------------------------------------- /app/views/decidim/proposals/collaborative_drafts/_collaborative_draft_aside.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/proposals/collaborative_drafts/_collaborative_draft_aside.html.erb -------------------------------------------------------------------------------- /app/views/decidim/proposals/proposals/_proposal_aside.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/proposals/proposals/_proposal_aside.html.erb -------------------------------------------------------------------------------- /app/views/decidim/shared/_filters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/decidim/shared/_filters.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/_logo_mobile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/_logo_mobile.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/_mailer_logo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/_mailer_logo.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/footer/_main_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/footer/_main_links.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/header/_main_links_mobile_account.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/header/_main_links_mobile_account.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/decidim/newsletter_base.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/layouts/decidim/newsletter_base.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/static/api/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/app/views/static/api/docs/index.html -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/get_author_rank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/get_author_rank.sh -------------------------------------------------------------------------------- /bin/get_comments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/get_comments.sh -------------------------------------------------------------------------------- /bin/get_user_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/get_user_data.sh -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/shakapacker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/shakapacker -------------------------------------------------------------------------------- /bin/shakapacker-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/shakapacker-dev-server -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/assets.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/esbuild.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/esbuild.config.js -------------------------------------------------------------------------------- /config/initializers/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/active_storage.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/aws_xray.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/aws_xray.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/blob_parser_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/blob_parser_override.rb -------------------------------------------------------------------------------- /config/initializers/comments_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/comments_count.rb -------------------------------------------------------------------------------- /config/initializers/content_block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/content_block.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/decidim.rb -------------------------------------------------------------------------------- /config/initializers/decidim_awesome.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/decidim_awesome.rb -------------------------------------------------------------------------------- /config/initializers/decidim_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/decidim_override.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth_line.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/omniauth_line.rb -------------------------------------------------------------------------------- /config/initializers/omniauth_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/omniauth_logging.rb -------------------------------------------------------------------------------- /config/initializers/pg_search_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/pg_search_override.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/slack.rb -------------------------------------------------------------------------------- /config/initializers/url_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/url_converter.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/area.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/area.ja.yml -------------------------------------------------------------------------------- /config/locales/component_settings.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/component_settings.en.yml -------------------------------------------------------------------------------- /config/locales/component_settings.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/component_settings.ja.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/file_validators_ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/file_validators_ja.yml -------------------------------------------------------------------------------- /config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/ja.yml -------------------------------------------------------------------------------- /config/locales/line_login.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/line_login.en.yml -------------------------------------------------------------------------------- /config/locales/line_login.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/line_login.ja.yml -------------------------------------------------------------------------------- /config/locales/navigation_maps.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/navigation_maps.ja.yml -------------------------------------------------------------------------------- /config/locales/polis_ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/polis_ja.yml -------------------------------------------------------------------------------- /config/locales/term.ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/locales/term.ja.yml -------------------------------------------------------------------------------- /config/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/newrelic.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/shakapacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/shakapacker.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/.modernizrrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/webpack/.modernizrrc -------------------------------------------------------------------------------- /config/webpack/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/webpack/custom.js -------------------------------------------------------------------------------- /config/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/config/webpack/webpack.config.js -------------------------------------------------------------------------------- /consultations_removal.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/consultations_removal.bash -------------------------------------------------------------------------------- /db/migrate/20200912130529_devise_create_decidim_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130529_devise_create_decidim_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130530_create_decidim_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130530_create_decidim_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130531_devise_invitable_add_to_decidim_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130531_devise_invitable_add_to_decidim_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130532_user_belongs_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130532_user_belongs_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130533_user_has_roles.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130533_user_has_roles.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130534_add_description_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130534_add_description_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130535_add_confirmable_to_devise.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130535_add_confirmable_to_devise.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130536_add_name_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130536_add_name_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130537_add_locale_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130537_add_locale_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130538_create_decidim_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130538_create_decidim_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130539_create_decidim_static_pages.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130539_create_decidim_static_pages.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130540_create_decidim_features.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130540_create_decidim_features.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130541_add_categories.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130541_add_categories.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130542_create_decidim_scopes.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130542_create_decidim_scopes.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130543_make_organization_description_optional.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130543_make_organization_description_optional.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130544_add_avatar_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130544_add_avatar_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130545_add_logo_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130545_add_logo_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130546_add_configuration_to_features.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130546_add_configuration_to_features.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130547_add_handler_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130547_add_handler_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130548_create_resource_links.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130548_create_resource_links.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130549_create_identities.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130549_create_identities.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130550_add_uniqueness_field_to_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130550_add_uniqueness_field_to_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130551_create_user_groups.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130551_create_user_groups.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130552_create_user_group_memberships.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130552_create_user_group_memberships.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130553_add_show_statistics_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130553_add_show_statistics_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130554_add_user_groups_verified.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130554_add_user_groups_verified.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130555_add_avatar_to_user_groups.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130555_add_avatar_to_user_groups.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130556_add_weight_to_features.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130556_add_weight_to_features.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130557_change_user_groups_verified_to_timestamp.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130557_change_user_groups_verified_to_timestamp.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130558_add_timestamps_to_identities.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130558_add_timestamps_to_identities.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130559_add_favicon_to_decidim_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130559_add_favicon_to_decidim_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130560_add_action_permissions_to_decidim_features.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130560_add_action_permissions_to_decidim_features.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130561_add_comments_and_replies_notifications_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130561_add_comments_and_replies_notifications_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130562_add_newsletter_notifications_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130562_add_newsletter_notifications_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130563_add_published_at_to_decidim_features.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130563_add_published_at_to_decidim_features.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130564_add_social_media_handlers_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130564_add_social_media_handlers_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130565_add_organization_logo_and_url.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130565_add_organization_logo_and_url.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130566_create_decidim_newsletters.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130566_create_decidim_newsletters.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130567_add_organization_custom_reference.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130567_add_organization_custom_reference.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130568_add_secondary_hosts_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130568_add_secondary_hosts_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130569_create_reports.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130569_create_reports.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130570_create_moderations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130570_create_moderations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130571_add_available_authorizations_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130571_add_available_authorizations_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130572_change_decidim_user_email_index_uniqueness.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130572_change_decidim_user_email_index_uniqueness.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130573_add_organization_to_identities.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130573_add_organization_to_identities.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130575_add_rejected_at_to_user_groups.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130575_add_rejected_at_to_user_groups.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130576_add_deleted_fields_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130576_add_deleted_fields_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130577_add_hierarchy_to_scopes.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130577_add_hierarchy_to_scopes.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130578_set_email_unique_in_organization_conditional.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130578_set_email_unique_in_organization_conditional.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130579_add_organization_to_user_groups.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130579_add_organization_to_user_groups.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130581_create_decidim_categorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130581_create_decidim_categorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130582_add_admin_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130582_add_admin_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130584_make_moderations_polymorphic.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130584_make_moderations_polymorphic.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130585_add_managed_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130585_add_managed_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130587_create_impersonation_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130587_create_impersonation_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130588_make_categories_polymorphic.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130588_make_categories_polymorphic.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130589_add_roles_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130589_add_roles_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130590_create_decidim_follows.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130590_create_decidim_follows.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130591_create_decidim_notifications.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130591_create_decidim_notifications.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130592_add_extra_to_notifications.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130592_add_extra_to_notifications.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130593_add_emails_on_notifications_flag_to_user.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130593_add_emails_on_notifications_flag_to_user.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130594_add_header_snippets_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130594_add_header_snippets_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130595_remove_followable_index_from_follows.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130595_remove_followable_index_from_follows.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130597_add_status_to_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130597_add_status_to_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130598_add_verification_metadata_to_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130598_add_verification_metadata_to_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130599_add_verification_attachment_to_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130599_add_verification_attachment_to_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130600_add_cta_button_url_and_text_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130600_add_cta_button_url_and_text_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130601_create_decidim_messaging.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130601_create_decidim_messaging.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130602_create_versions.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130602_create_versions.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130603_add_object_changes_to_versions.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130603_add_object_changes_to_versions.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130604_create_decidim_receipts.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130604_create_decidim_receipts.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130605_create_decidim_attachment_collections.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130605_create_decidim_attachment_collections.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130606_create_unique_nicknames.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130606_create_unique_nicknames.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130607_extend_user_profile.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130607_extend_user_profile.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130613_add_action_log.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130613_add_action_log.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130614_fix_reference_for_all_resources.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130614_fix_reference_for_all_resources.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130615_create_participatory_space_private_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130615_create_participatory_space_private_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130616_create_decidim_searchable_resource.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130616_create_decidim_searchable_resource.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130617_create_decidim_area_types.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130617_create_decidim_area_types.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130618_create_decidim_areas.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130618_create_decidim_areas.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130619_fix_nickname_index.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130619_fix_nickname_index.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130620_add_version_to_action_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130620_add_version_to_action_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130621_create_participatory_space_links.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130621_create_participatory_space_links.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130622_rename_features_to_components.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130622_rename_features_to_components.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130623_doorkeeper_models.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130623_doorkeeper_models.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130626_create_coauthorships.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130626_create_coauthorships.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130627_add_tos_version_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130627_add_tos_version_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130628_add_accepted_tos_version_field_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130628_add_accepted_tos_version_field_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130629_change_newsletter_notification_type_value.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130629_change_newsletter_notification_type_value.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130630_rename_missing_features_to_components.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130630_rename_missing_features_to_components.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130631_create_decidim_resource_permissions.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130631_create_decidim_resource_permissions.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130632_create_decidim_metrics.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130632_create_decidim_metrics.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130633_add_nickname_to_managed_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130633_add_nickname_to_managed_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130634_fix_result_follows.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130634_fix_result_follows.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130635_create_decidim_amendments.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130635_create_decidim_amendments.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130636_add_content_blocks.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130636_add_content_blocks.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130637_create_decidim_hashtags.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130637_create_decidim_hashtags.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130638_add_core_content_blocks.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130638_add_core_content_blocks.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130639_rename_content_block_options_to_settings.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130639_rename_content_block_options_to_settings.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130640_add_badge_scores.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130640_add_badge_scores.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130641_add_images_to_content_blocks.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130641_add_images_to_content_blocks.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130642_move_organization_fields_to_hero_content_block.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130642_move_organization_fields_to_hero_content_block.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130643_add_visibility_to_action_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130643_add_visibility_to_action_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130644_move_users_groups_to_users_table.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130644_move_users_groups_to_users_table.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130645_add_badge_switch_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130645_add_badge_switch_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130646_create_decidim_continuity_badge_statuses.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130646_create_decidim_continuity_badge_statuses.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130647_add_roles_to_memberships.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130647_add_roles_to_memberships.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130648_make_authors_polymorphic.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130648_make_authors_polymorphic.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130649_add_columns_to_pages.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130649_add_columns_to_pages.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130650_add_static_page_topics.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130650_add_static_page_topics.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130651_add_timestamps_to_components.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130651_add_timestamps_to_components.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130652_fix_user_follows.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130652_fix_user_follows.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130653_add_welcome_notification.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130653_add_welcome_notification.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130654_destroy_deleted_users_follows.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130654_destroy_deleted_users_follows.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130655_add_users_registration_mode_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130655_add_users_registration_mode_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130656_create_decidim_contextual_help_sections.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130656_create_decidim_contextual_help_sections.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130657_add_following_and_followers_counters_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130657_add_following_and_followers_counters_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130658_add_columns_to_static_page_topic.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130658_add_columns_to_static_page_topic.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130659_add_id_documents_fields_to_org.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130659_add_id_documents_fields_to_org.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130660_remove_following_users_count_from_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130660_remove_following_users_count_from_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130661_add_scope_to_action_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130661_add_scope_to_action_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130662_add_area_to_action_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130662_add_area_to_action_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130663_add_notification_types_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130663_add_notification_types_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130664_add_user_groups_switch_to_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130664_add_user_groups_switch_to_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130665_add_smtp_settings_to_decidim_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130665_add_smtp_settings_to_decidim_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130666_add_colors_to_decidim_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130666_add_colors_to_decidim_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130667_add_extended_data_to_newsletters.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130667_add_extended_data_to_newsletters.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130668_add_missing_indexes.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130668_add_missing_indexes.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130669_fix_user_names.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130669_fix_user_names.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130671_add_confidential_to_doorkeeper_application.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130671_add_confidential_to_doorkeeper_application.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130672_add_uniq_index_to_decidim_metrics.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130672_add_uniq_index_to_decidim_metrics.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130673_add_lockable_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130673_add_lockable_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130674_add_omniauth_settings_to_decidim_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130674_add_omniauth_settings_to_decidim_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130676_add_weight_to_categories.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130676_add_weight_to_categories.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130678_create_decidim_endorsements.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130678_create_decidim_endorsements.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130679_add_session_token_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130679_add_session_token_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130680_remove_continuity_badges.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130680_remove_continuity_badges.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130681_add_organization_timezone.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130681_add_organization_timezone.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130682_add_direct_message_types_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130682_add_direct_message_types_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130683_index_foreign_keys_in_decidim_action_logs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130683_index_foreign_keys_in_decidim_action_logs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130684_index_foreign_keys_in_decidim_amendments.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130684_index_foreign_keys_in_decidim_amendments.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130685_index_foreign_keys_in_decidim_authorizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130685_index_foreign_keys_in_decidim_authorizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130687_index_foreign_keys_in_decidim_endorsements.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130687_index_foreign_keys_in_decidim_endorsements.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130688_index_foreign_keys_in_decidim_notifications.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130688_index_foreign_keys_in_decidim_notifications.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130689_index_foreign_keys_in_oauth_access_grants.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130689_index_foreign_keys_in_oauth_access_grants.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130690_add_id_to_content_blocks_scope.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130690_add_id_to_content_blocks_scope.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130691_rename_scope_column.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130691_rename_scope_column.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130692_migrate_newsletters_to_templates.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130692_migrate_newsletters_to_templates.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130693_remove_newsletter_body.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130693_remove_newsletter_body.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130694_add_index_on_content_block_scope_id.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130694_add_index_on_content_block_scope_id.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130696_add_comments_max_length_to_decidim_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130696_add_comments_max_length_to_decidim_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20200912130698_devise_create_decidim_admins.decidim_system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130698_devise_create_decidim_admins.decidim_system.rb -------------------------------------------------------------------------------- /db/migrate/20200912130701_add_officialization_to_users.decidim_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130701_add_officialization_to_users.decidim_admin.rb -------------------------------------------------------------------------------- /db/migrate/20200912130702_add_reason_to_decidim_impersonation_logs.decidim_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130702_add_reason_to_decidim_impersonation_logs.decidim_admin.rb -------------------------------------------------------------------------------- /db/migrate/20200912130704_create_decidim_forms_questionnaires.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130704_create_decidim_forms_questionnaires.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130705_create_decidim_forms_questions.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130705_create_decidim_forms_questions.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130706_create_decidim_forms_answers.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130706_create_decidim_forms_answers.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130707_create_decidim_forms_answer_options.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130707_create_decidim_forms_answer_options.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130708_create_decidim_forms_answer_choices.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130708_create_decidim_forms_answer_choices.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130710_add_ip_hash_to_decidim_form_answers.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130710_add_ip_hash_to_decidim_form_answers.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130711_create_decidim_forms_display_conditions.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130711_create_decidim_forms_display_conditions.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130712_create_decidim_forms_question_matrix_rows.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130712_create_decidim_forms_question_matrix_rows.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20200912130714_move_authorizations_to_new_api.decidim_verifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130714_move_authorizations_to_new_api.decidim_verifications.rb -------------------------------------------------------------------------------- /db/migrate/20200912130717_translate_processes.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130717_translate_processes.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20200912130722_add_active_flag_to_step.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130722_add_active_flag_to_step.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20200912130723_add_position_to_steps.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130723_add_position_to_steps.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20200912130727_create_attachments.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130727_create_attachments.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20200912130734_add_scopes_to_processes.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130734_add_scopes_to_processes.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20200912130754_add_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130754_add_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130755_add_scopes_enabled_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130755_add_scopes_enabled_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130756_add_assembly_user_roles.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130756_add_assembly_user_roles.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130757_add_private_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130757_add_private_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130758_add_reference_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130758_add_reference_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130759_add_area_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130759_add_area_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130761_add_fields_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130761_add_fields_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130762_add_assembly_members.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130762_add_assembly_members.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130763_assembly_member_belongs_to_user.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130763_assembly_member_belongs_to_user.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130764_update_assembly_members_index.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130764_update_assembly_members_index.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130766_create_decidim_assembly_types.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130766_create_decidim_assembly_types.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130767_migrate_decidim_assembly_types.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130767_migrate_decidim_assembly_types.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130770_remove_legacy_decidim_assembly_type.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130770_remove_legacy_decidim_assembly_type.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130771_create_decidim_assemblies_settings.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130771_create_decidim_assemblies_settings.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20200912130772_create_decidim_pages.decidim_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130772_create_decidim_pages.decidim_pages.rb -------------------------------------------------------------------------------- /db/migrate/20200912130773_add_commentable_to_pages.decidim_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130773_add_commentable_to_pages.decidim_pages.rb -------------------------------------------------------------------------------- /db/migrate/20200912130774_remove_commentable_flag_from_pages.decidim_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130774_remove_commentable_flag_from_pages.decidim_pages.rb -------------------------------------------------------------------------------- /db/migrate/20200912130775_remove_page_feature_titles.decidim_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130775_remove_page_feature_titles.decidim_pages.rb -------------------------------------------------------------------------------- /db/migrate/20200912130776_rename_features_to_components_at_pages.decidim_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130776_rename_features_to_components_at_pages.decidim_pages.rb -------------------------------------------------------------------------------- /db/migrate/20200912130777_create_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130777_create_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130778_add_depth_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130778_add_depth_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130779_add_alignment_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130779_add_alignment_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130780_create_comment_votes.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130780_create_comment_votes.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130781_add_user_group_id_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130781_add_user_group_id_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130782_add_root_commentable_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130782_add_root_commentable_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130783_update_root_commentable_for_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130783_update_root_commentable_for_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130784_set_root_commentable_null_constraints.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130784_set_root_commentable_null_constraints.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130785_fix_user_groups_ids_in_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130785_fix_user_groups_ids_in_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130786_make_authors_polymorphic_for_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130786_make_authors_polymorphic_for_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130789_make_comments_handle_i18n.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130789_make_comments_handle_i18n.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20200912130790_create_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130790_create_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130791_close_a_meeting.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130791_close_a_meeting.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130792_add_latitude_and_longitude_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130792_add_latitude_and_longitude_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130793_remove_short_description_from_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130793_remove_short_description_from_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130794_add_reference_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130794_add_reference_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130795_remove_not_null_reference_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130795_remove_not_null_reference_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130796_migrate_meetings_category.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130796_migrate_meetings_category.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130798_create_registrations.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130798_create_registrations.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130800_add_fields_for_registrations.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130800_add_fields_for_registrations.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130801_add_meeting_types.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130801_add_meeting_types.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130802_add_organizer_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130802_add_organizer_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130803_create_meetings_minutes.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130803_create_meetings_minutes.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130804_add_services_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130804_add_services_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130805_create_decidim_agendas.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130805_create_decidim_agendas.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130806_create_decidim_agenda_items.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130806_create_decidim_agenda_items.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130807_create_decidim_meetings_invites.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130807_create_decidim_meetings_invites.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130811_add_upcoming_events_as_content_block.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130811_add_upcoming_events_as_content_block.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130812_add_questionnaire_to_existing_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130812_add_questionnaire_to_existing_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130815_add_author_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130815_add_author_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130816_create_meeting_services_table.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130816_create_meeting_services_table.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130817_move_meeting_services_to_own_model.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130817_move_meeting_services_to_own_model.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20200912130818_create_decidim_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130818_create_decidim_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130819_create_proposal_votes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130819_create_proposal_votes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130820_add_text_search_indexes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130820_add_text_search_indexes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130821_add_counter_cache_votes_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130821_add_counter_cache_votes_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130822_add_user_group_id_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130822_add_user_group_id_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130823_add_answers_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130823_add_answers_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130825_create_proposal_reports.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130825_create_proposal_reports.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130826_add_report_count_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130826_add_report_count_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130827_add_reference_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130827_add_reference_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130828_add_hidden_at_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130828_add_hidden_at_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130831_remove_not_null_reference_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130831_remove_not_null_reference_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130832_migrate_proposals_category.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130832_migrate_proposals_category.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130833_create_proposal_endorsements.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130833_create_proposal_endorsements.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130836_add_published_at_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130836_add_published_at_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130837_create_decidim_proposal_notes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130837_create_decidim_proposal_notes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130838_add_index_created_at_proposal_notes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130838_add_index_created_at_proposal_notes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130841_fix_nil_threshold_per_proposal.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130841_fix_nil_threshold_per_proposal.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130843_move_authorships_to_coauthorships.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130843_move_authorships_to_coauthorships.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130844_remove_authorships_from_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130844_remove_authorships_from_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130848_create_participatory_texts.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130848_create_participatory_texts.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130849_add_position_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130849_add_position_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130852_add_temporary_votes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130852_add_temporary_votes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130853_add_organization_as_author.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130853_add_organization_as_author.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130855_add_created_in_meeting.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130855_add_created_in_meeting.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130856_use_md5_indexes.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130856_use_md5_indexes.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130859_drop_proposal_endorsements.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130859_drop_proposal_endorsements.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130860_add_proposal_valuation_assignments.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130860_add_proposal_valuation_assignments.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130861_add_costs_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130861_add_costs_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130863_add_state_published_at_to_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130863_add_state_published_at_to_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130864_publish_existing_proposals_state.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130864_publish_existing_proposals_state.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130865_move_proposals_fields_to_i18n.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130865_move_proposals_fields_to_i18n.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20200912130867_create_projects.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130867_create_projects.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130868_create_orders.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130868_create_orders.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130869_create_line_items.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130869_create_line_items.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130871_add_reference_to_projects.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130871_add_reference_to_projects.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130872_remove_not_null_reference_budgets.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130872_remove_not_null_reference_budgets.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130873_migrate_projects_category.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130873_migrate_projects_category.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130875_use_big_ints_for_budgets.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130875_use_big_ints_for_budgets.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20200912130876_create_decidim_surveys.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130876_create_decidim_surveys.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130877_create_decidim_survey_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130877_create_decidim_survey_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130878_create_decidim_survey_answers.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130878_create_decidim_survey_answers.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130879_add_position_to_surveys_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130879_add_position_to_surveys_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130880_add_mandatory_to_surveys_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130880_add_mandatory_to_surveys_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130881_add_question_type_to_surveys_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130881_add_question_type_to_surveys_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130882_add_answer_options_to_surveys_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130882_add_answer_options_to_surveys_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130884_add_max_choices_to_survey_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130884_add_max_choices_to_survey_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130886_add_choices_to_decidim_survey_answers.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130886_add_choices_to_decidim_survey_answers.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130887_create_decidim_survey_answer_options.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130887_create_decidim_survey_answer_options.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130888_create_decidim_survey_answer_choices.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130888_create_decidim_survey_answer_choices.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130889_add_free_text_to_survey_answer_options.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130889_add_free_text_to_survey_answer_options.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130892_check_legacy_tables.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130892_check_legacy_tables.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130893_remove_survey_answer_choices.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130893_remove_survey_answer_choices.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130894_remove_survey_answer_options.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130894_remove_survey_answer_options.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130895_remove_survey_answers.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130895_remove_survey_answers.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130896_remove_survey_questions.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130896_remove_survey_questions.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130897_remove_survey_columns.decidim_surveys.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130897_remove_survey_columns.decidim_surveys.rb -------------------------------------------------------------------------------- /db/migrate/20200912130898_create_accountability_statuses.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130898_create_accountability_statuses.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20200912130899_create_accountability_results.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130899_create_accountability_results.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20200912130904_migrate_old_results.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130904_migrate_old_results.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20200912130906_add_weight_to_results.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130906_add_weight_to_results.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20200912130907_add_external_id_to_results.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130907_add_external_id_to_results.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20200912130909_create_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130909_create_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130910_add_debate_information_updates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130910_add_debate_information_updates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130911_add_author_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130911_add_author_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130912_add_reference_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130912_add_reference_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130913_add_user_group_author_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130913_add_user_group_author_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130914_drop_category_id_column.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130914_drop_category_id_column.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130916_fix_user_groups_ids_on_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130916_fix_user_groups_ids_on_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130917_add_organization_as_author_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130917_add_organization_as_author_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130919_close_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130919_close_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130920_fix_debates_i18n_fields.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130920_fix_debates_i18n_fields.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130921_add_endorsable_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130921_add_endorsable_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20200912130923_add_witnesses_to_sortitions.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130923_add_witnesses_to_sortitions.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130924_add_additional_info_to_sortitions.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130924_add_additional_info_to_sortitions.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130925_add_author_to_sortitions.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130925_add_author_to_sortitions.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130926_add_reference_to_sortitions.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130926_add_reference_to_sortitions.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130927_add_title_to_sortition.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130927_add_title_to_sortition.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130929_add_cancel_data_to_sortition.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130929_add_cancel_data_to_sortition.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130930_make_sortition_reference_nullable.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130930_make_sortition_reference_nullable.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130932_rename_sortitions_table.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130932_rename_sortitions_table.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130933_fix_sortitions_feature.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130933_fix_sortitions_feature.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130934_fix_sortitions_proposal_feature.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130934_fix_sortitions_proposal_feature.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130935_make_sortitions_authors_polymorphic.decidim_sortitions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130935_make_sortitions_authors_polymorphic.decidim_sortitions.rb -------------------------------------------------------------------------------- /db/migrate/20200912130937_create_decidim_blogs_posts.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130937_create_decidim_blogs_posts.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20200912130938_add_author_to_decidim_blogs_posts.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130938_add_author_to_decidim_blogs_posts.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20200912130939_make_blogposts_authors_polymorphics.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130939_make_blogposts_authors_polymorphics.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20200912130940_add_user_group_author_to_blogs.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130940_add_user_group_author_to_blogs.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20200912130941_add_endorsements_counter_cache_to_blogs.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130941_add_endorsements_counter_cache_to_blogs.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20200912130942_index_foreign_keys_in_decidim_blogs_posts.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20200912130942_index_foreign_keys_in_decidim_blogs_posts.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20201019071950_create_decidim_share_tokens.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071950_create_decidim_share_tokens.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20201019071952_remove_notifications_with_continuity_badge.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071952_remove_notifications_with_continuity_badge.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20201019071953_fix_attachments_titles.decidim_participatory_processes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071953_fix_attachments_titles.decidim_participatory_processes.rb -------------------------------------------------------------------------------- /db/migrate/20201019071958_fix_proposals_data.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071958_fix_proposals_data.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20201019071959_create_decidim_budgets.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071959_create_decidim_budgets.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071960_rename_budget_to_budget_ammount.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071960_rename_budget_to_budget_ammount.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071961_add_budget_reference_to_project.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071961_add_budget_reference_to_project.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071962_add_budget_reference_to_order.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071962_add_budget_reference_to_order.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071963_move_budgets_to_own_model.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071963_move_budgets_to_own_model.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071964_add_scope_to_budgets.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071964_add_scope_to_budgets.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071965_add_selected_at_to_project.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071965_add_selected_at_to_project.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071966_votes_enabled_to_votes_choices.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071966_votes_enabled_to_votes_choices.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20201019071970_add_cached_comment_metadata_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071970_add_cached_comment_metadata_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20201019071972_add_commentable_counter_cache_to_posts.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201019071972_add_commentable_counter_cache_to_posts.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20201029125846_change_direct_message_types_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20201029125846_change_direct_message_types_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20210417144649_invalidate_all_sessions_for_deleted_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144649_invalidate_all_sessions_for_deleted_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20210417144650_add_salt_to_decidim_forms_questionnaires.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144650_add_salt_to_decidim_forms_questionnaires.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20210417144651_fix_meetings_registration_terms.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144651_fix_meetings_registration_terms.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20210417144652_add_salt_to_decidim_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144652_add_salt_to_decidim_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20210417144653_fix_answered_proposals_after_copy.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144653_fix_answered_proposals_after_copy.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20210417144654_fix_counters_for_copied_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210417144654_fix_counters_for_copied_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20210712102322_create_decidim_awesome_config.decidim_decidim_awesome.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210712102322_create_decidim_awesome_config.decidim_decidim_awesome.rb -------------------------------------------------------------------------------- /db/migrate/20210712102323_create_awesome_editor_images.decidim_decidim_awesome.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20210712102323_create_awesome_editor_images.decidim_decidim_awesome.rb -------------------------------------------------------------------------------- /db/migrate/20211011230000_update_organizations_available_authorizations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211011230000_update_organizations_available_authorizations.rb -------------------------------------------------------------------------------- /db/migrate/20211121050004_remove_show_statistics_from_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050004_remove_show_statistics_from_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050005_create_decidim_user_moderations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050005_create_decidim_user_moderations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050006_create_decidim_user_reports.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050006_create_decidim_user_reports.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050007_add_suspension_fields_to_decidim_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050007_add_suspension_fields_to_decidim_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050008_create_decidim_user_suspensions.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050008_create_decidim_user_suspensions.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050009_add_current_suspension_id_to_decidim_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050009_add_current_suspension_id_to_decidim_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050010_add_reported_content_to_moderations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050010_add_reported_content_to_moderations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050011_add_locale_to_moderation_reports.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050011_add_locale_to_moderation_reports.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050012_encrypt_authorization_metadatas.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050012_encrypt_authorization_metadatas.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050013_add_allow_public_access_to_static_pages.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050013_add_allow_public_access_to_static_pages.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050014_update_table_block_user_functionality.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050014_update_table_block_user_functionality.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050016_add_email_on_moderations_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050016_add_email_on_moderations_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050017_add_followable_counter_cache_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050017_add_followable_counter_cache_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20211121050026_add_weight_field_to_assembly.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050026_add_weight_field_to_assembly.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20211121050028_add_online_meeting_url.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050028_add_online_meeting_url.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20211121050029_add_type_of_meeting.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050029_add_type_of_meeting.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20211121050034_add_followable_counter_cache_to_budgets.decidim_budgets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050034_add_followable_counter_cache_to_budgets.decidim_budgets.rb -------------------------------------------------------------------------------- /db/migrate/20211121050035_add_scope_to_debates_debate.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050035_add_scope_to_debates_debate.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20211121050036_archive_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050036_archive_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20211121050037_revert_archive_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050037_revert_archive_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20211121050038_add_followable_counter_cache_to_debates.decidim_debates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050038_add_followable_counter_cache_to_debates.decidim_debates.rb -------------------------------------------------------------------------------- /db/migrate/20211121050039_add_followable_counter_cache_to_blogs.decidim_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20211121050039_add_followable_counter_cache_to_blogs.decidim_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20220508115053_add_external_domain_whitelist_to_organization.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115053_add_external_domain_whitelist_to_organization.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20220508115054_create_active_storage_tables.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115054_create_active_storage_tables.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20220508115057_create_decidim_content_block_attachments.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115057_create_decidim_content_block_attachments.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20220508115058_fix_blocked_user_names_in_action_log.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115058_fix_blocked_user_names_in_action_log.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20220508115059_set_position_to_question_matrix_rows.decidim_forms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115059_set_position_to_question_matrix_rows.decidim_forms.rb -------------------------------------------------------------------------------- /db/migrate/20220508115061_add_announcement_to_assemblies.decidim_assemblies.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115061_add_announcement_to_assemblies.decidim_assemblies.rb -------------------------------------------------------------------------------- /db/migrate/20220508115062_add_participatory_process_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115062_add_participatory_process_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20220508115063_add_deleted_at_column_to_comments.decidim_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115063_add_deleted_at_column_to_comments.decidim_comments.rb -------------------------------------------------------------------------------- /db/migrate/20220508115065_add_published_at_to_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115065_add_published_at_to_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115069_create_decidim_meetings_polls.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115069_create_decidim_meetings_polls.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115070_drop_decidim_meetings_minutes_table.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115070_drop_decidim_meetings_minutes_table.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115072_create_decidim_meetings_questionnaires.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115072_create_decidim_meetings_questionnaires.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115073_create_decidim_meetings_questions.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115073_create_decidim_meetings_questions.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115074_create_decidim_meetings_answers.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115074_create_decidim_meetings_answers.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115075_create_decidim_meetings_answer_options.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115075_create_decidim_meetings_answer_options.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20220508115077_add_status_to_meetings_questions.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20220508115077_add_status_to_meetings_questions.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20221117104032_create_decidim_editor_images.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20221117104032_create_decidim_editor_images.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20221117104033_add_timestamps_to_content_blocks.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20221117104033_add_timestamps_to_content_blocks.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20221117104036_add_state_field_to_meeting.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20221117104036_add_state_field_to_meeting.decidim_meetings.rb -------------------------------------------------------------------------------- /db/migrate/20230426065808_add_polis_site_id_to_organizations.decidim_polis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230426065808_add_polis_site_id_to_organizations.decidim_polis.rb -------------------------------------------------------------------------------- /db/migrate/20230426065809_add_polis_site_url_to_organizations.decidim_polis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230426065809_add_polis_site_url_to_organizations.decidim_polis.rb -------------------------------------------------------------------------------- /db/migrate/20230522090010_remove_polis_site_id_and_url.decidim_polis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230522090010_remove_polis_site_id_and_url.decidim_polis.rb -------------------------------------------------------------------------------- /db/migrate/20230719081051_add_service_name_to_active_storage_blobs.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081051_add_service_name_to_active_storage_blobs.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081052_create_active_storage_variant_records.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081052_create_active_storage_variant_records.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081053_create_decidim_reminders.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081053_create_decidim_reminders.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081054_create_decidim_reminder_records.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081054_create_decidim_reminder_records.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081055_create_decidim_reminder_deliveries.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081055_create_decidim_reminder_deliveries.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081056_change_required_description_categories.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081056_change_required_description_categories.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081057_add_notification_settings_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081057_add_notification_settings_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081058_add_notifications_sending_frequency_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081058_add_notifications_sending_frequency_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081059_add_digest_sent_at_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081059_add_digest_sent_at_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081061_drop_emails_on_notifications_flag_from_user.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081061_drop_emails_on_notifications_flag_from_user.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081062_add_previous_passwords_to_users.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081062_add_previous_passwords_to_users.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081063_create_decidim_short_links.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081063_create_decidim_short_links.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20230719081067_add_title_to_timeline_entries.decidim_accountability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230719081067_add_title_to_timeline_entries.decidim_accountability.rb -------------------------------------------------------------------------------- /db/migrate/20230808035643_create_decidim_templates.decidim_templates.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20230808035643_create_decidim_templates.decidim_templates.rb -------------------------------------------------------------------------------- /db/migrate/20240311174006_create_decidim_authorization_transfers.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174006_create_decidim_authorization_transfers.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174007_rename_terms_of_use.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174007_rename_terms_of_use.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174008_add_content_policy_to_decidim_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174008_add_content_policy_to_decidim_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174009_change_states_on_amendments.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174009_change_states_on_amendments.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174010_change_states_on_reminder_records.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174010_change_states_on_reminder_records.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174012_remove_official_img_header.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174012_remove_official_img_header.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20240311174015_change_states_on_proposals.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240311174015_change_states_on_proposals.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20240713180919_enable_pg_bigm_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20240713180919_enable_pg_bigm_extension.rb -------------------------------------------------------------------------------- /db/migrate/20250312050013_remove_show_in_footer_in_static_pages.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20250312050013_remove_show_in_footer_in_static_pages.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20250312050014_change_name_on_decidim_organizations.decidim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20250312050014_change_name_on_decidim_organizations.decidim.rb -------------------------------------------------------------------------------- /db/migrate/20250312050025_create_default_proposal_states.decidim_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20250312050025_create_default_proposal_states.decidim_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20250312050027_add_withdrawn_fields_on_meetings.decidim_meetings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/migrate/20250312050027_add_withdrawn_fields_on_meetings.decidim_meetings.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /decidim-user_extension/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/Gemfile -------------------------------------------------------------------------------- /decidim-user_extension/LICENSE-AGPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/LICENSE-AGPLv3.txt -------------------------------------------------------------------------------- /decidim-user_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/README.md -------------------------------------------------------------------------------- /decidim-user_extension/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/Rakefile -------------------------------------------------------------------------------- /decidim-user_extension/app/forms/decidim/user_extension_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/forms/decidim/user_extension_form.rb -------------------------------------------------------------------------------- /decidim-user_extension/app/helpers/decidim/user_extension/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/helpers/decidim/user_extension/application_helper.rb -------------------------------------------------------------------------------- /decidim-user_extension/app/jobs/decidim/user_extension/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/jobs/decidim/user_extension/application_job.rb -------------------------------------------------------------------------------- /decidim-user_extension/app/mailers/decidim/user_extension/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/mailers/decidim/user_extension/application_mailer.rb -------------------------------------------------------------------------------- /decidim-user_extension/app/models/decidim/user_extension/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/models/decidim/user_extension/application_record.rb -------------------------------------------------------------------------------- /decidim-user_extension/app/packs/entrypoints/decidim_user_extension.js: -------------------------------------------------------------------------------- 1 | import "src/decidim/user_extension" -------------------------------------------------------------------------------- /decidim-user_extension/app/packs/entrypoints/decidim_user_extension.scss: -------------------------------------------------------------------------------- 1 | @import "stylesheets/decidim/user_extension/application.scss"; 2 | -------------------------------------------------------------------------------- /decidim-user_extension/app/packs/images/decidim/user_extension/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /decidim-user_extension/app/packs/src/decidim/user_extension/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/packs/src/decidim/user_extension/application.js -------------------------------------------------------------------------------- /decidim-user_extension/app/views/decidim/account/_user_extension.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/views/decidim/account/_user_extension.html.erb -------------------------------------------------------------------------------- /decidim-user_extension/app/views/decidim/account/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/views/decidim/account/show.html.erb -------------------------------------------------------------------------------- /decidim-user_extension/app/views/decidim/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/app/views/decidim/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /decidim-user_extension/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/bin/rails -------------------------------------------------------------------------------- /decidim-user_extension/config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/config/i18n-tasks.yml -------------------------------------------------------------------------------- /decidim-user_extension/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/config/locales/en.yml -------------------------------------------------------------------------------- /decidim-user_extension/config/locales/ja.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/config/locales/ja.yml -------------------------------------------------------------------------------- /decidim-user_extension/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/config/routes.rb -------------------------------------------------------------------------------- /decidim-user_extension/decidim-user_extension.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/decidim-user_extension.gemspec -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/user_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/user_extension.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/user_extension/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/user_extension/admin.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/user_extension/admin_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/user_extension/admin_engine.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/user_extension/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/user_extension/engine.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/user_extension/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/user_extension/version.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/verifications/user_extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/verifications/user_extension.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/verifications/user_extension/admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/verifications/user_extension/admin.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/verifications/user_extension/admin_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/verifications/user_extension/admin_engine.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/verifications/user_extension/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/verifications/user_extension/engine.rb -------------------------------------------------------------------------------- /decidim-user_extension/lib/decidim/verifications/user_extension/workflow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/lib/decidim/verifications/user_extension/workflow.rb -------------------------------------------------------------------------------- /decidim-user_extension/spec/i18n_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/spec/i18n_spec.rb -------------------------------------------------------------------------------- /decidim-user_extension/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/decidim-user_extension/spec/spec_helper.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/docs/DEPLOYMENT.md -------------------------------------------------------------------------------- /docs/DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/docs/DEVELOPMENT.md -------------------------------------------------------------------------------- /docs/INFRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/docs/INFRA.md -------------------------------------------------------------------------------- /docs/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/docs/UPGRADE.md -------------------------------------------------------------------------------- /entrypoint: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | rm -f /app/tmp/pids/server.pid 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /etc/nginx/conf.d/timeout.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/etc/nginx/conf.d/timeout.conf -------------------------------------------------------------------------------- /etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /ignore_spec/forms/extended_registration_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/ignore_spec/forms/extended_registration_form_spec.rb -------------------------------------------------------------------------------- /ignore_spec/sytem/admin_officializations_user_extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/ignore_spec/sytem/admin_officializations_user_extension_spec.rb -------------------------------------------------------------------------------- /ignore_spec/sytem/comment_sort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/ignore_spec/sytem/comment_sort_spec.rb -------------------------------------------------------------------------------- /ignore_spec/sytem/needs_user_extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/ignore_spec/sytem/needs_user_extension_spec.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/decidim/cfj/test/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/cfj/test/factories.rb -------------------------------------------------------------------------------- /lib/decidim/cfj/url_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/cfj/url_converter.rb -------------------------------------------------------------------------------- /lib/decidim/content_parsers/inline_images_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/content_parsers/inline_images_parser.rb -------------------------------------------------------------------------------- /lib/decidim/map/provider/static_map/cfj_osm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/map/provider/static_map/cfj_osm.rb -------------------------------------------------------------------------------- /lib/decidim/map/provider/static_map/cfj_osm/bounding_box.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/map/provider/static_map/cfj_osm/bounding_box.rb -------------------------------------------------------------------------------- /lib/decidim/map/provider/static_map/cfj_osm/conversion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/map/provider/static_map/cfj_osm/conversion.rb -------------------------------------------------------------------------------- /lib/decidim/map/provider/static_map/cfj_osm/map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/map/provider/static_map/cfj_osm/map.rb -------------------------------------------------------------------------------- /lib/decidim/map/provider/static_map/cfj_osm/tile_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/decidim/map/provider/static_map/cfj_osm/tile_source.rb -------------------------------------------------------------------------------- /lib/slack_chat_messenger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/slack_chat_messenger.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/comment.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/comment.rake -------------------------------------------------------------------------------- /lib/tasks/delete.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/delete.rake -------------------------------------------------------------------------------- /lib/tasks/download.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/download.rake -------------------------------------------------------------------------------- /lib/tasks/fix_signed_urls.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/fix_signed_urls.rake -------------------------------------------------------------------------------- /lib/tasks/i18n_yaml.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/i18n_yaml.rake -------------------------------------------------------------------------------- /lib/tasks/replace_to_null.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/lib/tasks/replace_to_null.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /omniauth-line_login/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/.gitignore -------------------------------------------------------------------------------- /omniauth-line_login/.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /omniauth-line_login/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/.rubocop.yml -------------------------------------------------------------------------------- /omniauth-line_login/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/Gemfile -------------------------------------------------------------------------------- /omniauth-line_login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/README.md -------------------------------------------------------------------------------- /omniauth-line_login/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/Rakefile -------------------------------------------------------------------------------- /omniauth-line_login/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/bin/console -------------------------------------------------------------------------------- /omniauth-line_login/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/bin/setup -------------------------------------------------------------------------------- /omniauth-line_login/lib/omniauth-line_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/lib/omniauth-line_login.rb -------------------------------------------------------------------------------- /omniauth-line_login/lib/omniauth/line_login/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/lib/omniauth/line_login/error.rb -------------------------------------------------------------------------------- /omniauth-line_login/lib/omniauth/line_login/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/lib/omniauth/line_login/version.rb -------------------------------------------------------------------------------- /omniauth-line_login/lib/omniauth/strategies/line_login.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/lib/omniauth/strategies/line_login.rb -------------------------------------------------------------------------------- /omniauth-line_login/omniauth-line_login.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/omniauth-line_login.gemspec -------------------------------------------------------------------------------- /omniauth-line_login/sig/omniauth/line_login.rbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/sig/omniauth/line_login.rbs -------------------------------------------------------------------------------- /omniauth-line_login/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/omniauth-line_login/spec/spec_helper.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/public/422.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/cells/content_blocks/map_cell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/cells/content_blocks/map_cell_spec.rb -------------------------------------------------------------------------------- /spec/controllers/decidim/editor_images_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/controllers/decidim/editor_images_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/fixtures/files/city.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/fixtures/files/city.jpeg -------------------------------------------------------------------------------- /spec/fixtures/files/heic-image-file.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/fixtures/files/heic-image-file.heic -------------------------------------------------------------------------------- /spec/forms/decidim/blogs/admin/post_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/forms/decidim/blogs/admin/post_form_spec.rb -------------------------------------------------------------------------------- /spec/forms/decidim/proposals/admin/admin_proposal_form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/forms/decidim/proposals/admin/admin_proposal_form_spec.rb -------------------------------------------------------------------------------- /spec/forms/decidim/registration_form_nickname_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/forms/decidim/registration_form_nickname_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/cfj/s3_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/cfj/s3_integration_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/cfj/s3_production_readiness_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/cfj/s3_production_readiness_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/cfj/url_converter_edge_cases_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/cfj/url_converter_edge_cases_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/cfj/url_converter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/cfj/url_converter_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/content_parsers/blob_parser_integration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/content_parsers/blob_parser_integration_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/content_parsers/blob_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/content_parsers/blob_parser_spec.rb -------------------------------------------------------------------------------- /spec/lib/decidim/content_parsers/inline_images_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/lib/decidim/content_parsers/inline_images_parser_spec.rb -------------------------------------------------------------------------------- /spec/mailers/newsletter_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/mailers/newsletter_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/notifications_digest_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/mailers/notifications_digest_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/reported_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/mailers/reported_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/decidim/editor_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/models/decidim/editor_image_spec.rb -------------------------------------------------------------------------------- /spec/presenters/decidim/notification_to_mailer_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/presenters/decidim/notification_to_mailer_presenter_spec.rb -------------------------------------------------------------------------------- /spec/previewers/heic_previewer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/previewers/heic_previewer_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/shared/proposal_form_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/shared/proposal_form_examples.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/active_storage_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/support/active_storage_helpers.rb -------------------------------------------------------------------------------- /spec/system/admin/blog_post_image_handling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/admin/blog_post_image_handling_spec.rb -------------------------------------------------------------------------------- /spec/system/admin_officializations_user_extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/admin_officializations_user_extension_spec.rb -------------------------------------------------------------------------------- /spec/system/comment_sort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/comment_sort_spec.rb -------------------------------------------------------------------------------- /spec/system/needs_user_extension_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/needs_user_extension_spec.rb -------------------------------------------------------------------------------- /spec/system/production_simulation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/production_simulation_spec.rb -------------------------------------------------------------------------------- /spec/system/user_profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/user_profile_spec.rb -------------------------------------------------------------------------------- /spec/system/user_registration_nickname_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/spec/system/user_registration_nickname_spec.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/imagemagick7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/vendor/imagemagick7/README.md -------------------------------------------------------------------------------- /vendor/imagemagick7/bin/convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/vendor/imagemagick7/bin/convert -------------------------------------------------------------------------------- /vendor/imagemagick7/bin/mogrify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/vendor/imagemagick7/bin/mogrify -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/decidim-cfj/HEAD/yarn.lock --------------------------------------------------------------------------------