List of commits:
Subject Hash Author Date (UTC)
0330_2 05fd77b9aa068f6fbf8a15415e8f5c1585135a2c dns 2020-03-30 10:47:17
honlap_0330 6ea249cbc85e4d4f558d2ed709c7f8f2397cff10 dns 2020-03-30 08:03:34
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 05fd77b9aa068f6fbf8a15415e8f5c1585135a2c - 0330_2
Author: dns
Author date (UTC): 2020-03-30 10:47
Committer name: dns
Committer date (UTC): 2020-03-30 10:47
Parent(s): 6ea249cbc85e4d4f558d2ed709c7f8f2397cff10
Signing key:
Tree: 6b97be391559d14c0ba4d39e968c614f6e63c045
File Lines added Lines deleted
src/main/java/hu/dns/honlap/config/SecurityConfiguration.java 2 0
src/main/webapp/app/newsarchive/newsarchive.component.html 2 2
src/main/webapp/app/shared/login/login.component.html 2 2
File src/main/java/hu/dns/honlap/config/SecurityConfiguration.java changed (mode: 100644) (index 4a7b1f7..59dacd7)
... ... public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
86 86 .antMatchers("/api/activate").permitAll() .antMatchers("/api/activate").permitAll()
87 87 .antMatchers("/api/account/reset-password/init").permitAll() .antMatchers("/api/account/reset-password/init").permitAll()
88 88 .antMatchers("/api/account/reset-password/finish").permitAll() .antMatchers("/api/account/reset-password/finish").permitAll()
89 .antMatchers("/api/piece-of-news/fresh").permitAll()
90 .antMatchers("/api/piece-of-news/archive").permitAll()
89 91 .antMatchers("/api/**").authenticated() .antMatchers("/api/**").authenticated()
90 92 .antMatchers("/management/health").permitAll() .antMatchers("/management/health").permitAll()
91 93 .antMatchers("/management/info").permitAll() .antMatchers("/management/info").permitAll()
File src/main/webapp/app/newsarchive/newsarchive.component.html changed (mode: 100644) (index 4c58beb..4cf7127)
8 8 </div> </div>
9 9 <h2 jhiTranslate="news.title">Hírarchívum</h2> <h2 jhiTranslate="news.title">Hírarchívum</h2>
10 10 <ul class="accordion-box style-three"> <ul class="accordion-box style-three">
11 <ng-container *ngFor="let pieceOfNews of news">
12 <li class="accordion block">
11 <ng-container *ngFor="let pieceOfNews of news; index as i">
12 <li *ngIf="i > 3" class="accordion block">
13 13 <div class="acc-btn"><span class="icon fa fa-plus"></span> <div class="acc-btn"><span class="icon fa fa-plus"></span>
14 14 <span class="post-date">{{pieceOfNews.newsDate | date:'shortDate'}}</span> <span class="post-date">{{pieceOfNews.newsDate | date:'shortDate'}}</span>
15 15 <h3>{{pieceOfNews.headline}}</h3> <h3>{{pieceOfNews.headline}}</h3>
File src/main/webapp/app/shared/login/login.component.html changed (mode: 100644) (index dcd23c1..b2fb643)
38 38 <button type="submit" class="btn btn-primary" jhiTranslate="login.form.button">Sign in</button> <button type="submit" class="btn btn-primary" jhiTranslate="login.form.button">Sign in</button>
39 39 </form> </form>
40 40
41 <div class="mt-3 alert alert-warning">
41 <!--<div class="mt-3 alert alert-warning">
42 42 <a class="alert-link" (click)="requestResetPassword()" jhiTranslate="login.password.forgot">Did you forget your password?</a> <a class="alert-link" (click)="requestResetPassword()" jhiTranslate="login.password.forgot">Did you forget your password?</a>
43 43 </div> </div>
44 44
45 45 <div class="alert alert-warning"> <div class="alert alert-warning">
46 46 <span jhiTranslate="global.messages.info.register.noaccount">You don't have an account yet?</span> <span jhiTranslate="global.messages.info.register.noaccount">You don't have an account yet?</span>
47 47 <a class="alert-link" (click)="register()" jhiTranslate="global.messages.info.register.link">Register a new account</a> <a class="alert-link" (click)="register()" jhiTranslate="global.messages.info.register.link">Register a new account</a>
48 </div>
48 </div>-->
49 49 </div> </div>
50 50 </div> </div>
51 51 </div> </div>
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