mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-03-27 19:23:59 -04:00
11 lines
215 B
Ruby
11 lines
215 B
Ruby
class MembersController < ApplicationController
|
|
def show
|
|
@user = User.find(params[:id])
|
|
|
|
respond_to do |format|
|
|
format.html # show.html.erb
|
|
format.json { render json: @user }
|
|
end
|
|
end
|
|
end
|