Uses of Class
io.gitea.model.NotificationThread
-
Packages that use NotificationThread Package Description io.gitea.api io.gitea.model -
-
Uses of NotificationThread in io.gitea.api
Methods in io.gitea.api that return NotificationThread Modifier and Type Method Description NotificationThreadNotificationApi. notifyGetThread(java.lang.String id)Get notification thread by IDNotificationThreadNotificationApi. notifyReadThread(java.lang.String id, java.lang.String toStatus)Mark notification thread as read by IDMethods in io.gitea.api that return types with arguments of type NotificationThread Modifier and Type Method Description java.util.List<NotificationThread>NotificationApi. notifyGetList(java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit)List users's notification threadsApiResponse<java.util.List<NotificationThread>>NotificationApi. notifyGetListWithHttpInfo(java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit)List users's notification threadsjava.util.List<NotificationThread>NotificationApi. notifyGetRepoList(java.lang.String owner, java.lang.String repo, java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit)List users's notification threads on a specific repoApiResponse<java.util.List<NotificationThread>>NotificationApi. notifyGetRepoListWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit)List users's notification threads on a specific repoApiResponse<NotificationThread>NotificationApi. notifyGetThreadWithHttpInfo(java.lang.String id)Get notification thread by IDjava.util.List<NotificationThread>NotificationApi. notifyReadList(org.threeten.bp.OffsetDateTime lastReadAt, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus)Mark notification threads as read, pinned or unreadApiResponse<java.util.List<NotificationThread>>NotificationApi. notifyReadListWithHttpInfo(org.threeten.bp.OffsetDateTime lastReadAt, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus)Mark notification threads as read, pinned or unreadjava.util.List<NotificationThread>NotificationApi. notifyReadRepoList(java.lang.String owner, java.lang.String repo, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, org.threeten.bp.OffsetDateTime lastReadAt)Mark notification threads as read, pinned or unread on a specific repoApiResponse<java.util.List<NotificationThread>>NotificationApi. notifyReadRepoListWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, org.threeten.bp.OffsetDateTime lastReadAt)Mark notification threads as read, pinned or unread on a specific repoApiResponse<NotificationThread>NotificationApi. notifyReadThreadWithHttpInfo(java.lang.String id, java.lang.String toStatus)Mark notification thread as read by IDMethod parameters in io.gitea.api with type arguments of type NotificationThread Modifier and Type Method Description com.squareup.okhttp.CallNotificationApi. notifyGetListAsync(java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<NotificationThread>> callback)List users's notification threads (asynchronously)com.squareup.okhttp.CallNotificationApi. notifyGetRepoListAsync(java.lang.String owner, java.lang.String repo, java.lang.Boolean all, java.util.List<java.lang.String> statusTypes, java.util.List<java.lang.String> subjectType, org.threeten.bp.OffsetDateTime since, org.threeten.bp.OffsetDateTime before, java.lang.Integer page, java.lang.Integer limit, ApiCallback<java.util.List<NotificationThread>> callback)List users's notification threads on a specific repo (asynchronously)com.squareup.okhttp.CallNotificationApi. notifyGetThreadAsync(java.lang.String id, ApiCallback<NotificationThread> callback)Get notification thread by ID (asynchronously)com.squareup.okhttp.CallNotificationApi. notifyReadListAsync(org.threeten.bp.OffsetDateTime lastReadAt, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, ApiCallback<java.util.List<NotificationThread>> callback)Mark notification threads as read, pinned or unread (asynchronously)com.squareup.okhttp.CallNotificationApi. notifyReadRepoListAsync(java.lang.String owner, java.lang.String repo, java.lang.String all, java.util.List<java.lang.String> statusTypes, java.lang.String toStatus, org.threeten.bp.OffsetDateTime lastReadAt, ApiCallback<java.util.List<NotificationThread>> callback)Mark notification threads as read, pinned or unread on a specific repo (asynchronously)com.squareup.okhttp.CallNotificationApi. notifyReadThreadAsync(java.lang.String id, java.lang.String toStatus, ApiCallback<NotificationThread> callback)Mark notification thread as read by ID (asynchronously) -
Uses of NotificationThread in io.gitea.model
Methods in io.gitea.model that return NotificationThread Modifier and Type Method Description NotificationThreadNotificationThread. id(java.lang.Long id)NotificationThreadNotificationThread. pinned(java.lang.Boolean pinned)NotificationThreadNotificationThread. repository(Repository repository)NotificationThreadNotificationThread. subject(NotificationSubject subject)NotificationThreadNotificationThread. unread(java.lang.Boolean unread)NotificationThreadNotificationThread. updatedAt(org.threeten.bp.OffsetDateTime updatedAt)NotificationThreadNotificationThread. url(java.lang.String url)
-