Merge pull request #290 from AyuntamientoMadrid/pages

adds pages controller for static pages
This commit is contained in:
Raimond Garcia
2015-08-29 20:07:33 +02:00
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