Function: forge-notification
forge-notification is a byte-compiled function defined in
forge-notify.el.
Signature
(forge-notification &rest SLOTS)
Documentation
Create a new object of class type forge-notification(var)/forge-notification(fun).
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-notify.el
;;; Class
(defclass forge-notification (forge-object)
((closql-class-prefix :initform "forge-")
(closql-table :initform 'notification)
(closql-primary-key :initform 'id)
(closql-order-by :initform [(desc id)])
(id :initarg :id)
(thread-id :initarg :thread-id)
(repository :initarg :repository)
(type :initarg :type)
(topic :initarg :topic)
(url :initarg :url)
(title :initarg :title)
(reason :initarg :reason)
(last-read :initarg :last-read)
(updated :initarg :updated)))