summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/ConfigUserService.java
Commit message (Collapse)AuthorAgeFilesLines
* Allow authentication providers to control user and team role changesJames Moger2014-09-261-16/+17
|
* Fix locale preference storingJames Moger2014-06-091-2/+9
|
* Add clone transport user preferenceJames Moger2014-06-051-0/+9
|
* Add "email me on my ticket changes" preferenceJames Moger2014-06-051-0/+4
|
* Revise language/locale preference handlingJames Moger2014-06-051-3/+6
|
* Implement user "disabled" flag as an alternative to deleting the accountJames Moger2014-03-041-0/+6
|
* issue-323: Synchronize all user service methodsJames Moger2014-01-281-10/+10
|
* issue-361: Reset user cookie after administrative password changeJames Moger2014-01-281-0/+3
| | | | | | | Cookies were not reset on administrative password change of a user account. This allowed accounts with changed passwords to continue authenticating. Cookies are now reset on password changes, they are validated on each page request, AND they will now expire 7 days after generation.
* Issue 356 - function updateUserModels also updates the stored teams inAlfred Schmid2014-01-091-6/+10
| | | | the UserModel. Now all Teammembers are shown when realm.ldap.synchronizeUsers.enable is turned on.
* Fix NPE on usermodel account type checkingJames Moger2013-12-111-1/+1
| | | | Change-Id: I964381a896e8c8bf8cce5f19a83fd7c33ef5c9bd
* Refactor user services and separate authentication (issue-281)James Moger2013-11-291-183/+19
| | | | Change-Id: I336e005e02623fc5e11a4f8b4408bea5465a43fd
* Extract UserManager from GitBlit singletonJames Moger2013-11-291-1/+7
| | | | Change-Id: I4885255ed63aa6c4e000c3e5501675440dca3958
* Eliminate static singleton calls from user servicesJames Moger2013-11-291-3/+4
| | | | Change-Id: Ieec34483822f033b19d3ff3259d071c9bc091ed1
* Trim trailing whitespace and organize importsJames Moger2013-09-301-61/+62
| | | | Change-Id: I9f91138b20219be6e3c4b28251487df262bff6cc
* Synchronize critical ConfigUserService methodsJames Moger2013-09-231-14/+14
|
* Eliminate redundant read() and use accessor instead of direct cache accessJames Moger2013-09-231-3/+1
|
* Fix potential NPE in cookie retrievalJames Moger2013-09-231-0/+3
|
* Return cloned usermodel on cookie authenticationJames Moger2013-09-231-0/+6
|
* Added locale user preference, still requires uiJames Moger2013-05-301-0/+8
|
* Added simple star/unstar functionJames Moger2013-05-301-1/+20
|
* Reorganized to Apache Standard Directory Layout & integrated MoxieJames Moger2013-03-271-0/+1078
This is a massive commit which reorganizes the entire project structure (although it is still monolithic), removes the Build classes, and switches to Moxie, a smarter Ant build tookit based on the original Gitblit Build classes. The Ant build script will likely require additional fine-tuning, but this is big step forward.
31'>431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670