diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-06-27 13:41:28 +0200 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-06-27 13:41:28 +0200 |
commit | 29213546a4468aa4a853dee8091bbd556f7d0f51 (patch) | |
tree | 061431ee9e05e11053b0f56d34490d460f3d9b40 /app | |
parent | 7ffb10465ecdbd96fc3c3ba9d8df92485f787e62 (diff) |
Fixed show_avatar in the switchboard#show
Diffstat (limited to 'app')
-rw-r--r-- | app/serializers/switchboard_serializer.rb | 2 | ||||
-rw-r--r-- | app/views/switchboards/show.html.erb | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/app/serializers/switchboard_serializer.rb b/app/serializers/switchboard_serializer.rb index c1cc0fe..7ad7792 100644 --- a/app/serializers/switchboard_serializer.rb +++ b/app/serializers/switchboard_serializer.rb @@ -1,7 +1,7 @@ class SwitchboardSerializer < ActiveModel::Serializer embed :ids, :include => true - attributes :id, :name, :blind_transfer_activated, :attended_transfer_activated + attributes :id, :name, :show_avatars, :blind_transfer_activated, :attended_transfer_activated has_many :switchboard_entries has_many :sip_accounts, :through => :switchboard_entries has_many :phone_numbers diff --git a/app/views/switchboards/show.html.erb b/app/views/switchboards/show.html.erb index 61adde7..3bc4da4 100644 --- a/app/views/switchboards/show.html.erb +++ b/app/views/switchboards/show.html.erb @@ -26,12 +26,15 @@ {{/each}} {{/if}} + {{#if switchboardEntrys.length}} <ul class="thumbnails"> {{#each switchboardEntry in switchboardEntrys}} <li class="span2"> <div class="thumbnail"> - {{avatar_img switchboardEntry.avatar_src}} + {{#if switchboardEntry.switchboard.show_avatars}} + {{avatar_img switchboardEntry.avatar_src}} + {{/if}} <small> <p></p> {{#if switchboardEntry.name}} |