ajout d'une route /manager/users/:id/emails

This commit is contained in:
clemkeirua 2020-10-06 16:52:10 +02:00
parent e9c33ecbd0
commit 27b8797296
4 changed files with 27 additions and 0 deletions

View file

@ -46,5 +46,10 @@ module Manager
redirect_to manager_users_path
end
def emails
@user = User.find(params[:id])
end
end
end