Skip to content

Commit

Permalink
Feat: Dedicated Directory
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianBalunan committed Mar 5, 2026
1 parent 1b3bf7e commit 22f5f24
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ntnu.sytemutvikling.team6.models;
package ntnu.sytemutvikling.team6.models.API;

/**
* Represents data parsed from the IK API JSON response.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ntnu.sytemutvikling.team6.models;
package ntnu.sytemutvikling.team6.models.API;

import com.google.gson.Gson;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ntnu.sytemutvikling.team6.models;
package ntnu.sytemutvikling.team6.models.API;

import java.sql.*;
import java.util.List;
Expand Down Expand Up @@ -151,9 +151,9 @@ INSERT INTO charities (org_number, name, status, url, is_pre_approved)
s.setBoolean(5, charity.getIs_pre_approved());

s.addBatch();
}
}
s.executeBatch();
}
}


// Temporary table for parity check
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ntnu.sytemutvikling.team6.models;
package ntnu.sytemutvikling.team6.models.API;

import java.io.File;
import java.io.FileWriter;
Expand All @@ -8,6 +8,7 @@
import java.util.Collections;
import java.util.List;
import com.opencsv.CSVWriter;
import ntnu.sytemutvikling.team6.models.Organization;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
Expand Down

0 comments on commit 22f5f24

Please sign in to comment.