From c8d9e6cbb75b3c55910489ea3cc01d49a100b625 Mon Sep 17 00:00:00 2001 From: AdrianBalunan Date: Tue, 3 Mar 2026 13:35:23 +0100 Subject: [PATCH] Fix: Saved IntelliJ confiqs and added .idea in the helpmehelpapplication to gitignore file --- .gitignore | 2 ++ .idea/.gitignore | 10 --------- .idea/Prosjekt-Repo.iml | 9 -------- .idea/compiler.xml | 13 ------------ .idea/jarRepositories.xml | 20 ------------------ .idea/misc.xml | 14 ------------ .idea/modules.xml | 8 ------- .idea/vcs.xml | 6 ------ .../team6/service/AuthenticationService.java | 0 .../team6/service/CharityService.java | 5 +++++ .../team6/service/DonationService.java | 5 +++++ .../team6/service/FeedbackService.java | 5 +++++ .../team6/service/CharityService.class | Bin 0 -> 335 bytes .../team6/service/DonationService.class | Bin 0 -> 338 bytes .../team6/service/FeedbackService.class | Bin 0 -> 338 bytes 15 files changed, 17 insertions(+), 80 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/Prosjekt-Repo.iml delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/jarRepositories.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml create mode 100644 helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/AuthenticationService.java create mode 100644 helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/CharityService.java create mode 100644 helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/DonationService.java create mode 100644 helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/FeedbackService.java create mode 100644 helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/CharityService.class create mode 100644 helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/DonationService.class create mode 100644 helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/FeedbackService.class diff --git a/.gitignore b/.gitignore index f0dbcf3..24fca5a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ .vscode/ .idea/ .target/ +.helpmehelpapplication\target/ +.helpmehelpapplication\.idea/ diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index ab1f416..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,10 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Ignored default folder with query files -/queries/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml -# Editor-based HTTP Client requests -/httpRequests/ diff --git a/.idea/Prosjekt-Repo.iml b/.idea/Prosjekt-Repo.iml deleted file mode 100644 index d6ebd48..0000000 --- a/.idea/Prosjekt-Repo.iml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 5c8171b..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml deleted file mode 100644 index 712ab9d..0000000 --- a/.idea/jarRepositories.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 3a943e7..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 5b796c4..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/AuthenticationService.java b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/AuthenticationService.java new file mode 100644 index 0000000..e69de29 diff --git a/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/CharityService.java b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/CharityService.java new file mode 100644 index 0000000..62fe87c --- /dev/null +++ b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/CharityService.java @@ -0,0 +1,5 @@ +package ntnu.sytemutvikling.team6.service; + +public class CharityService { + +} diff --git a/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/DonationService.java b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/DonationService.java new file mode 100644 index 0000000..ea3b1d7 --- /dev/null +++ b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/DonationService.java @@ -0,0 +1,5 @@ +package ntnu.sytemutvikling.team6.service; + +public class DonationService { + +} diff --git a/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/FeedbackService.java b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/FeedbackService.java new file mode 100644 index 0000000..8aedf7f --- /dev/null +++ b/helpmehelpapplication/src/main/java/ntnu/sytemutvikling/team6/service/FeedbackService.java @@ -0,0 +1,5 @@ +package ntnu.sytemutvikling.team6.service; + +public class FeedbackService { + +} diff --git a/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/CharityService.class b/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/CharityService.class new file mode 100644 index 0000000000000000000000000000000000000000..c52d76286f3c09b0f7b338c11c103ef3f822605d GIT binary patch literal 335 zcmb7?**VfrqHCxAJ>pJsR82hRm>+)7LTz4jCHCyZ2xb5;6 zV}yk9Mt52jTHY?Q4d;%~zc<#n2SRUpu_A=C>V*^Za6CYSK4Fv^%k#F(xPI1I!GyE4 z%5|}l<(~hVpE?|JqmH7!!z}{2o%tdr8JZYR^D)`GKQ% ZX#_|l{WWCZL~^h{M^aCP2t&yLqaS1GQQrUn literal 0 HcmV?d00001 diff --git a/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/DonationService.class b/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/DonationService.class new file mode 100644 index 0000000000000000000000000000000000000000..86d299609fbed9ef28c2c620209ae857df2bd9fb GIT binary patch literal 338 zcmb7=u};G<5QhItlLkVe72*ZhfB_33v4B_#Oc4x4-JNiPD~Tf|P9z?S35kIR;Gq!b z!o0Uh7y&vSc68C64+xpCO+zwK*xoVvC(zwMB zr-%u&l^v|9tX{q=R$O|*_(GicOTy^ja7l>g%>!o`VRM26W5P5S$G3f5aC>iyiV3@U zQ`%~2TM7KzjQx{zgwy=rV&{Zx(e!P}HxjsY-vu`=S1ta5@AO(!t@){rBfOJ literal 0 HcmV?d00001 diff --git a/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/FeedbackService.class b/helpmehelpapplication/target/classes/ntnu/sytemutvikling/team6/service/FeedbackService.class new file mode 100644 index 0000000000000000000000000000000000000000..4b0e587b06036d7a35cd6fe07ab42099bb8a5b7d GIT binary patch literal 338 zcmb7=u};G<5QhItlLkVeRmBUi0Rt97Vga#Kbc*Ou)ZKAU;5Koj#EHaXF(EPV06Y}p zT$tEc{_}TdTc7Up>-_`3Jtiq4!lm=BQ|*iAs`I_wmexHf&$_x+EjPV2tme$?LYwXK zhf~Ca$wv2Dm0B(@iVYi27~WcE{T*R&dbT3OvwF=L2G}1V!H_V{t>cHTD!6&nMahI| zUK?GmbYlbmHe>&6Tf$ZTZ?PLfwye9x@Z5&)kN=2Y1ZSK;3}pe3O2JGr6;e9}lJht0 by-FiOCK<+%2M3a)-8qqZC`34tj4=KNWkXVR literal 0 HcmV?d00001