An unofficial, mostly Bitwarden-compatible API server written in Ruby (Sinatra and ActiveRecord)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ucfirst_hash should not downcase full key and thus destroying camelCased names (#47)

authored by

Johannes / universa1 and committed by
joshua stein
287ebc72 e539b67d

+1 -1
+1 -1
lib/helper.rb
··· 18 18 def ucfirst_hash 19 19 out = {} 20 20 self.each do |k,v| 21 - out[k.to_s.downcase.ucfirst] = v 21 + out[k.to_s.ucfirst] = v 22 22 end 23 23 out 24 24 end