Merge commit '4b37f8fd05804d2d76e11cec1afce52919f2eb59' into work/reports-ui

This commit is contained in:
sechmachine
2026-08-14 23:42:06 +07:00
13 changed files with 1349 additions and 0 deletions
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.accounts;
/** Accounts and security module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.attendance;
/** Attendance, leave, and corrections module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.configuration;
/** Configuration, integrations, and calendar module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
@@ -0,0 +1,15 @@
package com.lab.labtimesheet.configuration;
import java.time.Clock;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration(proxyBeanMethods = false)
class TimeConfiguration {
@Bean
Clock applicationClock() {
return Clock.systemUTC();
}
}
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.notifications;
/** Notifications module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.projects;
/** Projects and tasks module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
@@ -0,0 +1,7 @@
package com.lab.labtimesheet.reporting;
/** Reporting module boundary. */
public final class ModuleBoundary {
private ModuleBoundary() {
}
}
+2
View File
@@ -7,4 +7,6 @@ spring:
compose:
enabled: false
jpa:
hibernate:
ddl-auto: validate
open-in-view: false
File diff suppressed because it is too large Load Diff