fix(connector): made getProjectById internal instead of private

This commit is contained in:
Anthony 2024-04-04 21:44:09 +02:00
parent 8e4ae16d7a
commit 3894d6d8b0

View File

@ -45,7 +45,7 @@ internal class ProjectDatabase (driverFactory: DriverFactory) {
* @param id Project id
* @return [Project]
*/
private fun getProjectById(id: Int): Project {
internal fun getProjectById(id: Int): Project {
return dbQuery.selectProjectById(id.toLong()).executeAsOne().toProject()
}