Skip to content

Commit

Permalink
feat:module_budgets_importer
Browse files Browse the repository at this point in the history
  • Loading branch information
BarbaraOliveira13 committed Jun 13, 2024
1 parent 44cfc45 commit e24b0e2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gem "decidim", "~> #{DECIDIM_VERSION}.0"

# External Decidim gems
gem "decidim-budgets_booth", github: "OpenSourcePolitics/decidim-module-ptp"

gem "decidim-budgets_importer", git: "https://github.com/OpenSourcePolitics/decidim-module-budgets_importer.git", branch: "main"
gem "decidim-cache_cleaner"
gem "decidim-custom_proposal_states", git: "https://github.com/alecslupu-pfa/decidim-module-custom_proposal_states", branch: DECIDIM_BRANCH
gem "decidim-decidim_awesome", "~> 0.9.1"
Expand Down
10 changes: 10 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
GIT
remote: https://github.com/OpenSourcePolitics/decidim-module-budgets_importer.git
revision: eec557bf67a3cd0e00a1c6bdcc8aa56e4908b635
branch: main
specs:
decidim-budgets_importer (2.0.0)
decidim-core (~> 0.27)

GIT
remote: https://github.com/OpenSourcePolitics/decidim-module-extra_user_fields.git
revision: 25f5a7843a38a5f9360f9bd42eb7e246d997bc7b
Expand Down Expand Up @@ -985,6 +993,7 @@ GEM

PLATFORMS
arm64-darwin-22
arm64-darwin-23
x86_64-linux

DEPENDENCIES
Expand All @@ -997,6 +1006,7 @@ DEPENDENCIES
dalli
decidim (~> 0.27.0)
decidim-budgets_booth!
decidim-budgets_importer!
decidim-cache_cleaner
decidim-custom_proposal_states!
decidim-decidim_awesome (~> 0.9.1)
Expand Down
4 changes: 3 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2024_06_05_102503) do
ActiveRecord::Schema.define(version: 2024_06_07_080257) do

# These are extensions that must be enabled in order to support this database
enable_extension "ltree"
Expand Down Expand Up @@ -1375,13 +1375,15 @@
t.integer "comments_count", default: 0, null: false
t.integer "follows_count", default: 0, null: false
t.integer "decidim_proposals_proposal_state_id", null: false
t.datetime "deleted_at"
t.index "md5((body)::text)", name: "decidim_proposals_proposal_body_search"
t.index "md5((title)::text)", name: "decidim_proposals_proposal_title_search"
t.index ["answered_at"], name: "index_decidim_proposals_proposals_on_answered_at"
t.index ["comments_count"], name: "index_decidim_proposals_proposals_on_comments_count"
t.index ["created_at"], name: "index_decidim_proposals_proposals_on_created_at"
t.index ["decidim_component_id"], name: "index_decidim_proposals_proposals_on_decidim_component_id"
t.index ["decidim_scope_id"], name: "index_decidim_proposals_proposals_on_decidim_scope_id"
t.index ["deleted_at"], name: "index_decidim_proposals_proposals_on_deleted_at"
t.index ["follows_count"], name: "index_decidim_proposals_proposals_on_follows_count"
t.index ["proposal_votes_count"], name: "index_decidim_proposals_proposals_on_proposal_votes_count"
t.index ["published_at"], name: "index_decidim_proposals_proposals_on_published_at"
Expand Down

0 comments on commit e24b0e2

Please sign in to comment.