-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[improvement] Improve create api key flow #2058
Conversation
- let's keep onboarding for contributors and setup for users
592cf97
to
4db6eec
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
layout 'minimal' | ||
|
||
def create_api_key | ||
channel_ids = create_api_key_params[:channels].split('[').last.split(']').last.split(',') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
channel_ids = create_api_key_params[:channels].split('[').last.split(']').last.split(',') | |
channel_ids = YAML::load(create_api_key_params[:channels]) |
config/locales/de.yml
Outdated
@@ -529,6 +529,9 @@ de: | |||
threema_unknown_content_message: | |||
label: Fehler-Nachricht bei unbekannten Inhalten | |||
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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
success_text: Du kannst nun mit der Einbindung von WhatsApp-Mitgliedern beginnen. | |
success_text: Du kannst jetzt Mitglieder über WhatsApp einladen. |
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.') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
☝️
Closes #2045