Interface AlertWebhookRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<AlertWebhook,UUID>, org.springframework.data.jpa.repository.JpaRepository<AlertWebhook,UUID>, org.springframework.data.repository.ListCrudRepository<AlertWebhook,UUID>, org.springframework.data.repository.ListPagingAndSortingRepository<AlertWebhook,UUID>, org.springframework.data.repository.PagingAndSortingRepository<AlertWebhook,UUID>, org.springframework.data.repository.query.QueryByExampleExecutor<AlertWebhook>, org.springframework.data.repository.Repository<AlertWebhook,UUID>

public interface AlertWebhookRepository extends org.springframework.data.jpa.repository.JpaRepository<AlertWebhook,UUID>
  • Method Summary

    Modifier and Type
    Method
    Description
    Resolves the enabled webhooks of a project, the set dispatched to on a regressing run.
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save

    Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository

    deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush

    Methods inherited from interface org.springframework.data.repository.ListCrudRepository

    findAll, findAllById, saveAll

    Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByProjectOrderByCreatedAtAsc

      List<AlertWebhook> findByProjectOrderByCreatedAtAsc(Project project)
    • findByProjectIdAndEnabledTrue

      List<AlertWebhook> findByProjectIdAndEnabledTrue(UUID projectId)
      Resolves the enabled webhooks of a project, the set dispatched to on a regressing run.