mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-11 16:09:48 +08:00
* milestones refactored with styled text * reference refactored * refactor commit references * fix styled text bug * request event refactored * refactor titles * warm caches for bg-gen models * delete old text cell * move shortlinks into MMMarkdown * almost there * build green * running and trimming whitespaces * styled text working * fix tests * tests passing
21 lines
347 B
Swift
21 lines
347 B
Swift
//
|
|
// IssueRequestCell.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 7/12/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
import SnapKit
|
|
|
|
final class IssueRequestCell: StyledTextViewCell {
|
|
|
|
// MARK: Public API
|
|
|
|
func configure(_ model: IssueRequestModel) {
|
|
set(renderer: model.string)
|
|
}
|
|
|
|
}
|