All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kiwiproject.changelog.github.GitHubChange.kt Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package org.kiwiproject.changelog.github

import org.kiwiproject.changelog.github.GitHubSearchManager.GitHubIssue

data class GitHubChange(val number: Int, val title: String, val htmlUrl: String, val category: String) {

    companion object {
        fun from(issue: GitHubIssue, category: String): GitHubChange {
            return GitHubChange(issue.number, issue.title, issue.htmlUrl, category)
        }
    }

    fun asMarkdown() = "$title [(#$number)]($htmlUrl)"
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy