Compare commits

..

1 Commits

Author SHA1 Message Date
3bd34c2fff Revert version to 2.0.2-dev
All checks were successful
Create Docker Image / Test Application (x86_64) (push) Successful in 28s
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 1m23s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 4m31s
Create Docker Image / Final Docker Image Manifest (push) Successful in 9s
2025-03-07 16:56:03 +11:00
6 changed files with 5 additions and 7 deletions

View File

@ -46,7 +46,6 @@ The update to v2 is progressing well - here is a list of work to do and done:
- [X] Delete extra values for Attributes that support multiple values - [X] Delete extra values for Attributes that support multiple values
- [ ] Delete Attributes - [ ] Delete Attributes
- [ ] Templates to enable entries to conform to a custom standard - [ ] Templates to enable entries to conform to a custom standard
- [ ] Autopopulate attribute values
- [X] Login to LDAP server - [X] Login to LDAP server
- [X] Configure login by a specific attribute - [X] Configure login by a specific attribute
- [X] Logout LDAP server - [X] Logout LDAP server
@ -54,7 +53,6 @@ The update to v2 is progressing well - here is a list of work to do and done:
- [X] Import LDIF - [X] Import LDIF
- [X] Schema Browser - [X] Schema Browser
- [ ] Searching - [ ] Searching
- [ ] Enforcing attribute uniqueness
- [ ] Is there something missing? - [ ] Is there something missing?
Support is known for these LDAP servers: Support is known for these LDAP servers:

View File

@ -30,7 +30,6 @@ return Application::configure(basePath: dirname(__DIR__))
$middleware->trustProxies(at: [ $middleware->trustProxies(at: [
'10.0.0.0/8', '10.0.0.0/8',
'127.0.0.0/8',
'172.16.0.0/12', '172.16.0.0/12',
'192.168.0.0/12', '192.168.0.0/12',
]); ]);

View File

@ -27,7 +27,7 @@
@endif @endif
@if(isset($page_actions) && $page_actions->contains('copy')) @if(isset($page_actions) && $page_actions->contains('copy'))
<li> <li>
<button class="btn btn-outline-dark p-1 m-1" id="entry-copy-move" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@lang('Copy/Move')" disabled><i class="fas fa-fw fa-copy fs-5"></i></button> <button class="btn btn-outline-dark p-1 m-1" id="entry-copy-move" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@lang('Copy/Move')"><i class="fas fa-fw fa-copy fs-5"></i></button>
</li> </li>
@endif @endif
@if((isset($page_actions) && $page_actions->contains('edit')) || old()) @if((isset($page_actions) && $page_actions->contains('edit')) || old())

View File

@ -14,7 +14,7 @@
@if ($edit) @if ($edit)
<br> <br>
<!-- @todo TO IMPLEMENT --> <!-- @todo TO IMPLEMENT -->
<button class="btn btn-sm btn-danger deletable d-none mt-3" disabled><i class="fas fa-trash-alt"></i> @lang('Delete')</button> <span class="btn btn-sm btn-danger deletable d-none mt-3"><i class="fas fa-trash-alt"></i> @lang('Delete')</span>
<div class="invalid-feedback pb-2"> <div class="invalid-feedback pb-2">
@if($e) @if($e)

View File

@ -1,11 +1,11 @@
@php($clone=FALSE) @php($clone=FALSE)
@if($o->is_rdn) @if($o->is_rdn)
<button class="btn btn-sm btn-outline-focus mt-3" disabled><i class="fas fa-fw fa-exchange"></i> @lang('Rename')</button> <span class="btn btn-sm btn-outline-focus mt-3"><i class="fas fa-fw fa-exchange"></i> @lang('Rename')</span>
@elseif($edit && $o->can_addvalues) @elseif($edit && $o->can_addvalues)
<span class="p-0 m-0"> <span class="p-0 m-0">
@switch(get_class($o)) @switch(get_class($o))
@case('App\Classes\LDAP\Attribute\Binary\JpegPhoto') @case('App\Classes\LDAP\Attribute\Binary\JpegPhoto')
<button @class(['btn','btn-sm','btn-outline-primary','mt-3','addable','d-none'=>(! $new)]) id="{{ $o->name_lc }}" disabled><i class="fas fa-fw fa-plus"></i> @lang('Upload JpegPhoto')</button> <span @class(['btn','btn-sm','btn-outline-primary','mt-3','addable','d-none'=>(! $new)]) id="{{ $o->name_lc }}"><i class="fas fa-fw fa-plus"></i> @lang('Upload JpegPhoto')</span>
@break @break

View File

@ -18,4 +18,5 @@
</div> </div>
</div> </div>
</div> </div>
<div class="col-2"></div>
</div> </div>