adds pages controller for static pages

This commit is contained in:
Juanjo Bazán
2015-08-29 19:32:08 +02:00
parent 062445339e
commit 84feeba085
11 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
class PagesController < ApplicationController
skip_authorization_check
def privacy
end
def legal
end
def terms
end
def transparency
end
def opendata
end
end