Merge branch 'develop' into staging

This commit is contained in:
Xavier J 2016-06-03 11:19:10 +02:00
commit 1b36598391
4 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,11 @@
class PingController < ApplicationController
def index
if (ActiveRecord::Base.connected?)
render nothing: true, status: 200, content_type: "application/json"
else
render nothing: true, status: 500, content_type: "application/json"
end
end
end

View file

@ -1,4 +1,5 @@
#form_login
%br
= image_tag('logo-tps.png')
%br
%h2#login_admin Administration

View file

@ -1,4 +1,5 @@
#form_login
%br
= image_tag('logo-tps.png')
%br
%h2#gestionnaire_login Accompagnateur

View file

@ -1,5 +1,7 @@
Rails.application.routes.draw do
get "/ping" => "ping#index", :constraints => {:ip => /127.0.0.1/}
devise_for :administrations, skip: [:password, :registrations]
devise_for :administrateurs, controllers: {