List of commits:
Subject Hash Author Date (UTC)
AppId kezelése 249216ae85ac705040dddc154ef610d17a5efeaa Horváth Attila 2020-03-26 12:42:58
PieceofNews entitás rendbe tétele 970fde24d6ce370c6cc002e55d087b787eb11852 Horváth Attila 2020-03-26 12:13:56
whitespace törlés 4. 3785cb83112283c52d7e99529d35c2a243f512d5 hd 2020-03-26 10:07:49
whitespace törlés 3. f5e673f76b454d535c63c0176f7341ec7e94c2f2 hd 2020-03-26 10:02:48
whitespace törlés 2. 2aad8c0a0ca4caf4df7955d1361bcae7ccf71379 hd 2020-03-26 10:01:22
whitespace törlés aeaa6adf034b51694722760c31668dad53bc9273 hd 2020-03-26 09:58:53
honlap init bae3256f55b2dcf338f1464508b5d6857c070bab hd 2020-03-26 09:50:58
honlap init 9dd61db1ca7a3be82eaabcb88af96fb061d72aa4 hd 2020-03-26 09:36:35
Initial version of honlap generated by JHipster-6.8.0 fbabb2905b7786b5e91bb5347b816854e35ac3bb hd 2020-03-26 08:59:15
Commit 249216ae85ac705040dddc154ef610d17a5efeaa - AppId kezelése
Author: Horváth Attila
Author date (UTC): 2020-03-26 12:42
Committer name: Horváth Attila
Committer date (UTC): 2020-03-26 12:42
Parent(s): 970fde24d6ce370c6cc002e55d087b787eb11852
Signing key:
Tree: 8fdadcb45f8eef64ee0e2dae3dcce0770a0830db
File Lines added Lines deleted
src/main/java/hu/dns/honlap/repository/PieceOfNewsRepository.java 2 2
File src/main/java/hu/dns/honlap/repository/PieceOfNewsRepository.java changed (mode: 100644) (index 0890626..478bd3f)
... ... import org.springframework.stereotype.Repository;
14 14 @SuppressWarnings("unused") @SuppressWarnings("unused")
15 15 @Repository @Repository
16 16 public interface PieceOfNewsRepository extends JpaRepository<PieceOfNews, Long> { public interface PieceOfNewsRepository extends JpaRepository<PieceOfNews, Long> {
17 List<PieceOfNews> findByPublishDateGreaterThanOrderByNewsDateDesc(Instant publishDate);
18 List<PieceOfNews> findFirst4ByPublishDateGreaterThanOrderByNewsDateDesc(Instant publishDate);
17 List<PieceOfNews> findByAppIdAndPublishDateGreaterThanOrderByNewsDateDesc(Integer appId, Instant publishDate);
18 List<PieceOfNews> findFirst4ByAppIdAndPublishDateGreaterThanOrderByNewsDateDesc(Integer appId, Instant publishDate);
19 19 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/dns/honlap

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/dns/honlap

Clone this repository using git:
git clone git://git.rocketgit.com/user/dns/honlap

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main