Skip to content

Commit

Permalink
Trim repos name for export to 80max
Browse files Browse the repository at this point in the history
  • Loading branch information
richardhallett committed Jan 8, 2020
1 parent 64fb0b2 commit 5cc01bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/export_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def repositories
clients.each do |client|
client_id = client.symbol.downcase
row = {
accountName: client.name,
accountName: client.name.truncate(80),
fabricaAccountId: client.symbol,
parentFabricaAccountId: client.provider.present? ? client.provider.symbol : nil,
salesForceId: client.salesforce_id,
Expand Down

0 comments on commit 5cc01bf

Please sign in to comment.