OSDN Git Service

UAをVersion/10.0.3 Safari/602.4.8に変更
[kcd/KCD.git] / KCD / UpdateQuestListCommand.swift
1 //
2 //  UpdateQuestListCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/08.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 class UpdateQuestListCommand: JSONCommand {
12     override func execute() {
13         let store = ServerDataStore.oneTimeEditor()
14         parameter["api_quest_id"]
15             .int
16             .flatMap { store.quest(by: $0) }
17             .map {
18                 $0.progress_flag = 0
19                 $0.state = 1
20         }
21     }
22 }