mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
Merge pull request #1007 from Scalesoft/develop
Added https support for repositories
This commit is contained in:
commit
d2993c2900
@ -61,6 +61,16 @@
|
||||
>
|
||||
ssh
|
||||
</v-chip>
|
||||
|
||||
<v-chip
|
||||
x-small
|
||||
class="ml-1"
|
||||
:color="type ==='https' ? 'primary' : ''"
|
||||
@click="setType('https')"
|
||||
style="font-weight: bold;"
|
||||
>
|
||||
https
|
||||
</v-chip>
|
||||
<span class="caption ml-3">local:</span>
|
||||
<v-chip
|
||||
x-small
|
||||
@ -166,7 +176,7 @@ export default {
|
||||
return 'ssh';
|
||||
}
|
||||
|
||||
if (!['git', 'file', 'ssh'].includes(m[1])) {
|
||||
if (!['git', 'file', 'ssh', 'https'].includes(m[1])) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user