toggle menu
gitlab
jvm
switch theme
search in API
gitlab
/
com.mato.gitlab.api
/
RepositoryFilesApi
/
getFileBlame
get
File
Blame
@
GET
(
value
=
"projects/{id}/repository/files/{file_path}/blame"
)
abstract
suspend
fun
getFileBlame
(
@
Path
(
value
=
"id"
)
id
:
String
,
@
Path
(
value
=
"file_path"
)
filePath
:
String
,
@
Query
(
value
=
"ref"
)
ref
:
String
,
@
Query
(
value
=
"range[end]"
)
rangeEnd
:
Int
,
@
Query
(
value
=
"range[start]"
)
rangeStart
:
Int
,
@
Query
(
value
=
"range"
)
range
:
String
)
:
Result
<
FileBlameInfo
>