first commit

This commit is contained in:
Israel Ogbole
2016-04-25 01:47:31 +01:00
commit 12c84dee8e
447 changed files with 80643 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
end

View File

View File

@@ -0,0 +1,4 @@
class PlainpageController < ApplicationController
def index
end
end