* Moved queries into PartyQueryBuilder service PartyQueryBuilder supersedes PartyQueryingConcern as it is also used for UsersController (and is our fix for profiles being broken) * Implement PartyQueryBuilder in controllers * Update summon_transformer.rb This should fix the transformer so that we properly capture summons and subaura summons * Update parties_controller_spec.rb * Add NewRelic license key * Add Sentry Why not?
7 lines
178 B
Ruby
7 lines
178 B
Ruby
# frozen_string_literal: true
|
|
|
|
Sentry.init do |config|
|
|
config.breadcrumbs_logger = [:active_support_logger]
|
|
config.dsn = ENV['SENTRY_DSN']
|
|
config.enable_tracing = true
|
|
end
|