Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/firebase #52

Merged
merged 20 commits into from
Nov 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
"location" : "https://github.com/ReactiveX/RxSwift",
"state" : {
"branch" : "main",
"revision" : "8ec08deca8271516f673706e78fb954797cd6627"
"revision" : "91a36920b1ec069004fef9dc41b7c5dbcaa5fffe"
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@
import Foundation

struct QuestDTO: DTO {
let groupId: UUID
let uuid: UUID
let date: String
let title: String
let data: String
let currentCount: Int
let totalCount: Int
let groupUid: UUID

}

extension QuestDTO {
func toDomain() -> Quest {
return Quest(groupId: groupUid,
return Quest(groupId: groupId,
uuid: uuid,
date: Date(),
date: date.toDate()!,
title: title,
currentCount: currentCount,
totalCount: totalCount)
Expand Down
Loading