Skip to content

Commit

Permalink
Improve German/channel id parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwr18 committed Oct 22, 2024
1 parent 4db6eec commit 3c5fbd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class SetupController < ApplicationController
layout 'minimal'

def create_api_key
channel_ids = create_api_key_params[:channels].split('[').last.split(']').last.split(',')
channel_ids = YAML.safe_load(create_api_key_params[:channels])
client_id = create_api_key_params[:client]
@organization.update!(three_sixty_dialog_client_id: client_id)
channel_ids.each do |channel_id|
Expand Down
2 changes: 1 addition & 1 deletion config/locales/de.yml
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ de:
help: Wenn ein Mitglied via Threema Nachrichten versendet, die von 100eyes noch nicht unterstützt werden, erhält es diese Nachricht.
whats_app_setup:
success_heading: WhatsApp wurde erfolgreich konfiguriert
success_text: Du kannst nun mit der Einbindung von WhatsApp-Mitgliedern beginnen.
success_text: Du kannst jetzt Mitglieder über WhatsApp einladen.

settings:
header: Einstellungen
Expand Down
2 changes: 1 addition & 1 deletion spec/requests/whats_app/three_sixty_dialog/setup_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
subject.call
expect(response).to be_successful
expect(page).to have_content('WhatsApp wurde erfolgreich konfiguriert')
expect(page).to have_content('Du kannst nun mit der Einbindung von WhatsApp-Mitgliedern beginnen.')
expect(page).to have_content('Du kannst jetzt Mitglieder über WhatsApp einladen.')
end
end
end

0 comments on commit 3c5fbd6

Please sign in to comment.