Fall back to a job number if entity specifier is just numbers
This commit is contained in:
Родитель
03091c6420
Коммит
73b5756876
|
@ -529,8 +529,8 @@ function printJobGroups(groups, asDate) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getEntityPath (entity) {
|
function getEntityPath (entitySpec) {
|
||||||
entity = parseEntity(entity)
|
entity = parseEntity(entitySpec)
|
||||||
if (entity.type == 'home') {
|
if (entity.type == 'home') {
|
||||||
return 'users/~'
|
return 'users/~'
|
||||||
}
|
}
|
||||||
|
@ -540,6 +540,9 @@ function getEntityPath (entity) {
|
||||||
if (entity.type == 'shared') {
|
if (entity.type == 'shared') {
|
||||||
return 'shared'
|
return 'shared'
|
||||||
}
|
}
|
||||||
|
if (entitySpec.match(/^[0-9]+$/)) {
|
||||||
|
return getEntityPath('job:' + entitySpec);
|
||||||
|
}
|
||||||
fail('Unsupported entity type "' + entity.type + '"')
|
fail('Unsupported entity type "' + entity.type + '"')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче