From af7e91510cee912649593f939405248ef137dd1c Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 24 Oct 2016 13:56:20 +0200 Subject: [PATCH] Clear up expected format on login form --- lib/omniauth/mastodon/version.rb | 2 +- lib/omniauth/strategies/mastodon.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/omniauth/mastodon/version.rb b/lib/omniauth/mastodon/version.rb index 0a0941f..bbab096 100644 --- a/lib/omniauth/mastodon/version.rb +++ b/lib/omniauth/mastodon/version.rb @@ -12,7 +12,7 @@ module OmniAuth end def patch - 1 + 2 end def pre diff --git a/lib/omniauth/strategies/mastodon.rb b/lib/omniauth/strategies/mastodon.rb index 95d4033..31c585d 100644 --- a/lib/omniauth/strategies/mastodon.rb +++ b/lib/omniauth/strategies/mastodon.rb @@ -60,7 +60,7 @@ module OmniAuth def get_identifier form = OmniAuth::Form.new(title: 'Mastodon Login') - form.text_field 'Your full Mastodon identifier', 'identifier' + form.text_field 'Your full Mastodon identifier (username@domain)', 'identifier' form.button 'Login' form.to_response end