Class: Devformance::IconsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Devformance::IconsController
- Defined in:
- app/controllers/devformance/icons_controller.rb
Instance Method Summary collapse
Instance Method Details
#png ⇒ Object
13 14 15 16 17 18 19 |
# File 'app/controllers/devformance/icons_controller.rb', line 13 def png send_file( Devformance::Engine.root.join("app/assets/images/icon.png"), type: "image/png", disposition: "inline" ) end |
#svg ⇒ Object
5 6 7 8 9 10 11 |
# File 'app/controllers/devformance/icons_controller.rb', line 5 def svg send_file( Devformance::Engine.root.join("app/assets/images/icon.svg"), type: "image/svg+xml", disposition: "inline" ) end |