Method: BMC::ButtonHelper#import_button

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

#import_button(url, **options) ⇒ Object



138
139
140
141
142
143
144
145
# File 'app/helpers/bmc/button_helper.rb', line 138

def import_button(url, **options)
  options = {
    :icon   => :upload,
    :action => :import,
  }.merge(options)

  bs_button(url, **options)
end