mirror of
https://github.com/S2-/gitlit
synced 2025-08-03 04:40:05 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
5fef5c7236 | |||
81e88046d2 | |||
c577446cc5 | |||
b841785adb | |||
9eae13612e |
@@ -43,16 +43,18 @@
|
||||
}
|
||||
|
||||
if (notification.event && notification.event === 'unlock') {
|
||||
$('[data-file="' + notification.file + '"].js-unlock').hide();
|
||||
$('[data-file="' + notification.file + '"].js-lock').show();
|
||||
let file = notification.file.replace(/\\/g, '\\\\');
|
||||
$('[data-file="' + file + '"].js-unlock').hide();
|
||||
$('[data-file="' + file + '"].js-lock').show();
|
||||
let text = 'not locked';
|
||||
$('[data-file="' + notification.file + '"]').parent().prev().text(text);
|
||||
$('[data-file="' + file + '"]').parent().prev().text(text);
|
||||
}
|
||||
if (notification.event && notification.event === 'lock') {
|
||||
$('[data-file="' + notification.file + '"].js-lock').hide();
|
||||
$('[data-file="' + notification.file + '"].js-unlock').show();
|
||||
let file = notification.file.replace(/\\/g, '\\\\');
|
||||
$('[data-file="' + file + '"].js-lock').hide();
|
||||
$('[data-file="' + file + '"].js-unlock').show();
|
||||
let text = notification.data.owner.name + ' (id: ' + notification.data.id + ')';
|
||||
$('[data-file="' + notification.file + '"]').parent().prev().text(text);
|
||||
$('[data-file="' + file + '"]').parent().prev().text(text);
|
||||
}
|
||||
});
|
||||
|
||||
|
2
app/package-lock.json
generated
2
app/package-lock.json
generated
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gitlit-app",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.9",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gitlit-app",
|
||||
"version": "1.0.7",
|
||||
"version": "1.0.9",
|
||||
"description": "",
|
||||
"main": "main.js",
|
||||
"dependencies": {
|
||||
@@ -25,7 +25,7 @@
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://git.e.tern.al/s2/gitlit"
|
||||
"url": "https://github.com/S2-/gitlit"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
|
@@ -8,11 +8,12 @@
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "ssh://git@git.e.tern.al:22022/s2/gitlit.git"
|
||||
"url": "https://github.com/S2-/gitlit"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"electron-packager": "^12.2.0"
|
||||
}
|
||||
},
|
||||
"keywords": ["git", "lfs", "locking", "git-locks"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user