Merge commit '4b37f8fd05804d2d76e11cec1afce52919f2eb59' into work/projects
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
}
|
||||
@@ -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
Reference in New Issue
Block a user