0
0
Fork 0

use existing inflections instead of custom helper (#4624)

* use existing inflections instead of custom helper

* use ActiveSupport versions
This commit is contained in:
nightpool 2017-08-17 17:20:50 -04:00 committed by Eugen Rochko
parent 116b8a6363
commit efec02f153
4 changed files with 2 additions and 46 deletions

View file

@ -1,14 +0,0 @@
# frozen_string_literal: true
module AccountHelper
def protocol_for_display(protocol)
case protocol
when 'activitypub'
'ActivityPub'
when 'ostatus'
'OStatus'
else
protocol
end
end
end