OSDN Git Service

AppDelegateからウインドウに関する部分を分離した
[kcd/KCD.git] / KCD / RealDestroyShipCommand.swift
1 //
2 //  RealDestroyShipCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/09.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 class RealDestroyShipCommand: JSONCommand {
12     override func execute() {
13         let store = ServerDataStore.oneTimeEditor()
14         parameter["api_ship_id"]
15             .int
16             .flatMap { store.ship(by: $0) }
17             .flatMap { store.delete($0) }
18     }
19 }