mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-01 05:09:08 +01:00
10 lines
215 B
Ruby
10 lines
215 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Settings::PushNotificationsController < ApplicationController
|
||
|
before_action :authenticate_user!
|
||
|
|
||
|
def index
|
||
|
@subscriptions = current_user.web_push_subscriptions
|
||
|
end
|
||
|
end
|