From 82f90928ffefa3e56b77a8f4bd7e59302af8fadd Mon Sep 17 00:00:00 2001 From: Pascal Zumkehr Date: Sat, 23 Dec 2017 18:10:04 +0100 Subject: [PATCH] remove ancient user serializer swag --- app/serializers/user_serializer.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/serializers/user_serializer.rb b/app/serializers/user_serializer.rb index f6a1724..620e08f 100644 --- a/app/serializers/user_serializer.rb +++ b/app/serializers/user_serializer.rb @@ -10,9 +10,6 @@ class UserSerializer < ApplicationSerializer property :api_key_expires_at, type: :string, format: 'date-time', readOnly: true property :admin, type: :boolean, readOnly: true end - property :links do - property :self, type: :string, format: 'url', readOnly: true - end end attributes :id, :username, :first_name, :last_name, :groups,