Skip to content

Commit c03db47

Browse files
committed
prepare release v 0.7.4
1 parent 9f02d9c commit c03db47

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ThisBuild / organization := "app.softnetwork"
22

33
name := "account"
44

5-
ThisBuild / version := "0.7.3"
5+
ThisBuild / version := "0.7.4"
66

77
ThisBuild / scalaVersion := "2.12.18"
88

core/src/main/scala/app/softnetwork/account/persistence/typed/AccountNotifications.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ trait AccountNotifications[T <: Account] extends Completion {
3232
s"$entityId-registration"
3333
}
3434

35-
private[this] def addMail(
35+
protected def addMail(
3636
uuid: String,
3737
account: T,
3838
subject: String,
@@ -63,7 +63,7 @@ trait AccountNotifications[T <: Account] extends Completion {
6363
}
6464
}
6565

66-
private[this] def addSMS(
66+
protected def addSMS(
6767
uuid: String,
6868
account: T,
6969
subject: String,
@@ -93,7 +93,7 @@ trait AccountNotifications[T <: Account] extends Completion {
9393
}
9494
}
9595

96-
private[this] def addPush(
96+
protected def addPush(
9797
uuid: String,
9898
account: T,
9999
subject: String,

0 commit comments

Comments
 (0)