Submit social housing lettings and sales data (CORE)

14 lines
201 B

class MaintenanceController < ApplicationController
def service_moved
if current_user
sign_out
end
end
def service_unavailable
if current_user
sign_out
end
end
end