refactor(connector): fix typo in createProcedure where it was called createProject...

This commit is contained in:
Anthony 2024-04-06 16:56:55 +02:00
parent 371ccf8511
commit 168c0ad18f

View File

@ -19,7 +19,7 @@ class ProcedureTransaction (driverFactory: DriverFactory) {
* @param type Procedure type (e.g. Normal, Emergency)
* @param description Description of what the procedure will do
*/
fun createProject(name: String, type: String, description: String) {
fun createProcedure(name: String, type: String, description: String) {
// TODO add dynamic procedureId insertion
val projectId = 1
val currentTime = Clock.System.now().toString()