A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
335 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package org.ros.chatto.repository;
  2. import java.util.List;
  3. public interface UserRepositoryCustom {
  4. // @Query("select s from Article s where s.author like ?1 and s.title = ?2")
  5. // List<Article> findByAuthorAndTitle(String author, String title);
  6. // @Query("select u from ChatUser u")
  7. public List<String> getAllUserNames(String s);
  8. }