Method: BMC::ButtonHelper#read_button

Defined in:
app/helpers/bmc/button_helper.rb

#read_button(url, **options) ⇒ Object



71
72
73
74
75
76
77
78
# File 'app/helpers/bmc/button_helper.rb', line 71

def read_button(url, **options)
  options = {
    :icon   => :info_circle,
    :action => :read,
  }.merge(options)

  bs_button(url, **options)
end