diff --git a/app/models/issue_trackers/lighthouse_tracker.rb b/app/models/issue_trackers/lighthouse_tracker.rb index f894e1f..53265d6 100644 --- a/app/models/issue_trackers/lighthouse_tracker.rb +++ b/app/models/issue_trackers/lighthouse_tracker.rb @@ -3,8 +3,8 @@ if defined? Lighthouse Label = "lighthouseapp" Fields = [ [:account, { - :label => "Account (subdomain)", - :placeholder => "example if http://example.lighthouseapp.com" + :label => "Lighthouse Subdomain", + :placeholder => "example" }], [:api_token, { :label => "API Token", @@ -18,7 +18,7 @@ if defined? Lighthouse def check_params if Fields.detect {|f| self[f[0]].blank? } - errors.add :base, 'You must specify your Lighthouseapp account, API token and Project ID' + errors.add :base, 'You must specify your Lighthouseapp Subdomain, API token and Project ID' end end diff --git a/app/models/issue_trackers/redmine_tracker.rb b/app/models/issue_trackers/redmine_tracker.rb index dabfacb..aeeb556 100644 --- a/app/models/issue_trackers/redmine_tracker.rb +++ b/app/models/issue_trackers/redmine_tracker.rb @@ -4,7 +4,7 @@ if defined? RedmineClient Fields = [ [:account, { :label => "Redmine URL", - :placeholder => "e.g. http://www.redmine.org/" + :placeholder => "http://www.redmine.org/" }], [:api_token, { :placeholder => "API Token for your account" diff --git a/app/models/notification_services/campfire_service.rb b/app/models/notification_services/campfire_service.rb index 524a7ba..be18cb6 100644 --- a/app/models/notification_services/campfire_service.rb +++ b/app/models/notification_services/campfire_service.rb @@ -2,16 +2,18 @@ if defined? Campy class NotificationServices::CampfireService < NotificationService Label = "campfire" Fields = [ - [:subdomain, { - :placeholder => "Campfire Subdomain" - }], - [:api_token, { - :placeholder => "API Token" - }], - [:room_id, { - :placeholder => "Room ID", - :label => "Room ID" - }], + [:subdomain, { + :label => "Campfire Subdomain", + :placeholder => "example" + }], + [:api_token, { + :label => "API Token", + :placeholder => "1aa1111a111111aaaa11a11a1111a11a11111a11" + }], + [:room_id, { + :label => "Room ID number", + :placeholder => "123456" + }] ] def check_params -- libgit2 0.21.2