summaryrefslogtreecommitdiff
path: root/app/views/users/index.json.jbuilder
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:48:54 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:48:54 -0500
commitd0545c2820d101a98b3c895cf6e3691145a62f3c (patch)
treeb3bdb78ab94b2929c9bb7fdb2f6f257e58edc93e /app/views/users/index.json.jbuilder
parentf72b55ce938a14313091a92d84c4083c3ba4f2fd (diff)
use separate migrations to make things hidden, add user#groups:integer
Diffstat (limited to 'app/views/users/index.json.jbuilder')
-rw-r--r--app/views/users/index.json.jbuilder2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/users/index.json.jbuilder b/app/views/users/index.json.jbuilder
index cf21a4a..42d8b72 100644
--- a/app/views/users/index.json.jbuilder
+++ b/app/views/users/index.json.jbuilder
@@ -1,4 +1,4 @@
json.array!(@users) do |user|
- json.extract! user, :id, :name, :email, :user_name, :password_digest, :remember_token
+ json.extract! user, :id, :name, :email, :user_name
json.url user_url(user, format: :json)
end