mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Show tokens in share modal
This commit is contained in:
parent
9810f63245
commit
df338ebd6d
3 changed files with 22 additions and 0 deletions
|
@ -29,6 +29,13 @@ script(type='text/ng-template', id='shareProjectModalTemplate')
|
||||||
href
|
href
|
||||||
ng-click="openMakePrivateModal()"
|
ng-click="openMakePrivateModal()"
|
||||||
) #{translate("make_private")}
|
) #{translate("make_private")}
|
||||||
|
.col-xs-12.access-token-display
|
||||||
|
div
|
||||||
|
strong #{translate("read_only")}
|
||||||
|
pre.access-token {{ getReadOnlyTokenLink() }}
|
||||||
|
div
|
||||||
|
strong #{translate("read_and_write")}
|
||||||
|
pre.access-token {{ getReadAndWriteTokenLink() }}
|
||||||
|
|
||||||
//- legacy public-access
|
//- legacy public-access
|
||||||
.row.public-access-level(ng-show="project.publicAccesLevel == 'readAndWrite' || project.publicAccesLevel == 'readOnly'")
|
.row.public-access-level(ng-show="project.publicAccesLevel == 'readAndWrite' || project.publicAccesLevel == 'readOnly'")
|
||||||
|
|
|
@ -199,6 +199,12 @@ define [
|
||||||
scope: $scope
|
scope: $scope
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$scope.getReadAndWriteTokenLink = () ->
|
||||||
|
location.origin + "/" + $scope.project.tokens.readAndWrite
|
||||||
|
|
||||||
|
$scope.getReadOnlyTokenLink = () ->
|
||||||
|
location.origin + "/" + $scope.project.tokens.readOnly
|
||||||
|
|
||||||
$scope.done = () ->
|
$scope.done = () ->
|
||||||
$modalInstance.close()
|
$modalInstance.close()
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,15 @@
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.access-token-display {
|
||||||
|
padding-top: 8px;
|
||||||
|
.access-token {
|
||||||
|
background-color: @gray-lightest;
|
||||||
|
border: 1px solid @gray-lighter;
|
||||||
|
padding: 6px 12px 6px 12px
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.project-member, .project-invite, .public-access-level {
|
.project-member, .project-invite, .public-access-level {
|
||||||
padding: (@line-height-computed / 2) 0;
|
padding: (@line-height-computed / 2) 0;
|
||||||
border-bottom: 1px solid @gray-lighter;
|
border-bottom: 1px solid @gray-lighter;
|
||||||
|
|
Loading…
Reference in a new issue