# frozen_string_literal: true module Bearcat class Client < Footrest::Client module AccountNotifications extend ClientModule prefix "/api/v1/accounts/:account_id/account_notifications/" do get :global_notifications_for_user post :create_global_notification prefix ":id/" do get :global_notification put :update_global_notification delete :close_global_notification_for_user end end end end end