Commit 663871384ff94786651a7385320d3cb45591ed0e

Authored by Nathan Broadbent
1 parent d22bf8d2
Exists in master and in 1 other branch production

Tweaked Lighthouse & Campfire placeholders & labels

app/models/issue_trackers/lighthouse_tracker.rb
... ... @@ -3,15 +3,15 @@ if defined? Lighthouse
3 3 Label = "lighthouseapp"
4 4 Fields = [
5 5 [:account, {
6   - :label => "Lighthouse Subdomain",
7   - :placeholder => "example"
  6 + :label => "Subdomain",
  7 + :placeholder => "subdomain from http://{{subdomain}}.lighthouseapp.com"
8 8 }],
9 9 [:api_token, {
10 10 :label => "API Token",
11   - :placeholder => "1aa1111a111111aaaa11a11a1111a11a11111a11"
  11 + :placeholder => "123456789abcdef123456789abcdef"
12 12 }],
13 13 [:project_id, {
14   - :label => "Project ID number",
  14 + :label => "Project ID",
15 15 :placeholder => "123456"
16 16 }]
17 17 ]
... ...
app/models/notification_services/campfire_service.rb
... ... @@ -3,15 +3,15 @@ if defined? Campy
3 3 Label = "campfire"
4 4 Fields = [
5 5 [:subdomain, {
6   - :label => "Campfire Subdomain",
7   - :placeholder => "example"
  6 + :label => "Subdomain",
  7 + :placeholder => "subdomain from http://{{subdomain}}.campfirenow.com"
8 8 }],
9 9 [:api_token, {
10 10 :label => "API Token",
11   - :placeholder => "1aa1111a111111aaaa11a11a1111a11a11111a11"
  11 + :placeholder => "123456789abcdef123456789abcdef"
12 12 }],
13 13 [:room_id, {
14   - :label => "Room ID number",
  14 + :label => "Room ID",
15 15 :placeholder => "123456"
16 16 }]
17 17 ]
... ...