# Copyright (C) 2018 Colin Darie , 2018 Evolix # License: GNU AGPL-3+ (see full text in LICENSE file) module NotificationsHelper def many_channels_available? Notification.channels.many? end def recipient_col_class many_channels_available? ? "col-md-7" : "col-md-9" end end