6 lines
138 B
Ruby
6 lines
138 B
Ruby
class Notifications::BulkReadingsController < ApplicationController
|
|
def create
|
|
Current.user.notifications.unread.read_all
|
|
end
|
|
end
|