Skip to content
Snippets Groups Projects
Select Git revision
  • 62002df18a3e0fcd12d9842ebe59efc18f084e12
  • main default protected
  • dev protected
  • hotfixes-oct-2022
  • refactor/avatar-cell
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1
  • 1.0.8
  • 1.0.7
  • 1.0.6
12 results

Session+Notifications.swift

Blame
  • user avatar
    Bruno Muniz authored
    48ac2853
    History
    Session+Notifications.swift 263 B
    extension Session {
        public func registerNotifications(_ string: String) throws {
            try client.bindings.registerNotifications(string)
        }
    
        public func unregisterNotifications() throws {
            try client.bindings.unregisterNotifications()
        }
    }