Class: Devformance::IconsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/devformance/icons_controller.rb

Instance Method Summary collapse

Instance Method Details

#pngObject



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

#svgObject



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