Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
rappasoft committed Jun 26, 2020
2 parents 9d3d562 + b6a6b48 commit a1de918
Show file tree
Hide file tree
Showing 42 changed files with 1,944 additions and 1,722 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [6.0.5] - 2020-06-26

### Changed

- Namespace fix
- Update jquery version
- Chinese language updates

## [6.0.4] - 2020-04-09

### Changed
Expand Down Expand Up @@ -183,7 +191,8 @@ All notable changes to this project will be documented in this file.
- Fix yarn tests
- Fix: Socially logged in users get assigned the default role

[Unreleased]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.4...development
[Unreleased]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.5...development
[6.0.5]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.4...v6.0.5
[6.0.4]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.3...v6.0.4
[6.0.3]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.2...v6.0.3
[6.0.2]: https://github.com/rappasoft/laravel-boilerplate/compare/v6.0.1...v6.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use App\Http\Requests\Backend\Auth\User\ManageUserRequest;
use App\Models\Auth\SocialAccount;
use App\Models\Auth\User;
use App\Repositories\Backend\Access\User\SocialRepository;
use App\Repositories\Backend\Auth\SocialRepository;

/**
* Class UserSocialController.
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Frontend/Auth/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use App\Events\Frontend\Auth\UserRegistered;
use App\Http\Controllers\Controller;
use App\Http\Requests\RegisterRequest;
use App\Http\Requests\Frontend\Auth\RegisterRequest;
use App\Repositories\Frontend\Auth\UserRepository;
use Illuminate\Foundation\Auth\RegistersUsers;

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Requests/Frontend/Auth/RegisterRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Requests;
namespace App\Http\Requests\Frontend\Auth;

use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
Expand Down
2 changes: 1 addition & 1 deletion app/Repositories/Backend/Auth/SocialRepository.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Repositories\Backend\Access\User;
namespace App\Repositories\Backend\Auth;

use App\Events\Backend\Auth\User\UserSocialDeleted;
use App\Exceptions\GeneralException;
Expand Down
Loading

0 comments on commit a1de918

Please sign in to comment.