Skip to content

Commit

Permalink
fix(#76-support-search): remove nullability at title
Browse files Browse the repository at this point in the history
  • Loading branch information
y9Kap committed Oct 31, 2023
1 parent 809318d commit f934142
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class AuthorizedMeetingRepository(
public val creator: User get() = data.creator
public val date: Date get() = data.date
public val location: Location get() = data.location
public val title: String? get() = data.title
public val title: String get() = data.title
public val description: String? get() = data.description
public val participantsCount: Int get() = data.participantsCount
public val previewParticipants: List<User> get() = data.previewParticipants
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class MeetingRepository(
public val creator: User get() = data.creator
public val date: Date get() = data.date
public val location: Location get() = data.location
public val title: String? get() = data.title
public val title: String get() = data.title
public val description: String? get() = data.description
public val participantsCount: Int get() = data.participantsCount
public val previewParticipants: List<User> get() = data.previewParticipants
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public data class MeetingSerializable(
val creator: UserSerializable,
val date: DateSerializable,
val location: LocationSerializable,
val title: String?,
val title: String,
val description: String? = null,
val participantsCount: Int,
val previewParticipants: List<UserSerializable>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public data class Meeting(
val creator: User,
val date: Date,
val location: Location,
val title: String?,
val title: String,
val description: String?,
val participantsCount: Int,
val previewParticipants: List<User>,
Expand Down

0 comments on commit f934142

Please sign in to comment.