Uses JWT, fixes some endpoints, adds base services

This commit is contained in:
Guillaume Tâche
2025-04-24 20:38:09 +02:00
parent 8a05f63687
commit a8e7a62b0c
113 changed files with 1625 additions and 380 deletions

View File

@@ -0,0 +1,21 @@
package ch.gtache.elderscrollslegends.service.pubsub;
import ch.gtache.elderscrollslegends.service.BaseService;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import javax.sql.DataSource;
import java.util.List;
@ApplicationScoped
class PubSubService extends BaseService {
@Inject
PubSubService(final DataSource dataSource) {
super(dataSource);
}
ChatRooms getChatRooms(final String steamID) {
return new ChatRooms(List.of());
}
}