|
f481ee765d
|
Made authorization.
|
2023-07-06 10:48:32 +06:00 |
|
|
6b2aff910b
|
Added console command to add user with admin role.
|
2023-07-02 16:17:18 +06:00 |
|
|
d0bd480dc1
|
A new enumeration 'SystemRole' has been created for user roles. For now, it only contains one case 'Admin'. This list is intended to designate system roles that cannot be removed.
|
2023-07-02 16:07:49 +06:00 |
|
|
0073dffc28
|
Implemented password validation rules in the AppServiceProvider class. Ensured passwords should be at least 8 characters long, contain a mix of uppercase, lowercase, and special characters. These rules apply only for the production environment.
|
2023-07-02 15:21:01 +06:00 |
|
|
9b56522f02
|
A new 'locale' field of string type with a maximum length of 2 characters and a default value as 'ru' has been added to the users table through a migration file. This field has been also added to the User model. The addition of the 'locale' field will allow users to specify their preferred language in their profile settings.
|
2023-06-29 00:06:27 +06:00 |
|
|
90cab02d62
|
Enforce strict types and final class in User model.
|
2023-06-28 23:46:16 +06:00 |
|
|
34319e5724
|
Additional fields 'is_active' and 'timezone' have been added to the users table in the database migrations and the User model. This update allows us to better manage user's activation status and time zone preferences. 'is_active' field, a boolean field, signifies the active status of a user and has been set to default to false. 'timezone', an optional string, will store user's preferred timezone.
|
2023-06-28 23:44:06 +06:00 |
|
|
cf449eb8e2
|
Add SoftDeletes feature to User model.
|
2023-06-28 23:05:31 +06:00 |
|
|
a35b8db281
|
Add captcha image generation functionality.
|
2023-06-28 17:29:56 +06:00 |
|
|
81635b4efa
|
This commit adds an ImageManager class that handles the creation of Image instances. It implements an ImageManagerContract, thereby adhering to set guidelines for the creation of captchas. The ImageManager class contains a createImage method capable of creating new instances of Image, allowing for increased flexibility and consistency in CAPTCHA image generation.
|
2023-06-28 17:26:15 +06:00 |
|
|
c1cf5a1ae9
|
This change introduces ImageLines, an interface for adding randomized lines to captcha images for enhanced security. The interface has been implemented in the Lines class. The goal is to randomize lines on captcha images to prevent bot reads.
|
2023-06-28 17:24:41 +06:00 |
|
|
f2ecdfcf97
|
This commit adds an Image interface and implementation that will be used in the Captcha generation process. The Image object includes methods for manipulating an image, such as adding text, inserting a background, and adding a line. These methods will provide the necessary functionalities for generating a Captcha.
|
2023-06-28 17:22:19 +06:00 |
|
|
00177a134e
|
Introduced ServiceResult and ServiceResultError interfaces, and respective classes with related methods. These changes were necessary to add and handle service results throughout the app. We now have a standard way to return and handle both successes and errors from our services. This leads to cleaner, clearer, and more maintainable code.
|
2023-06-28 14:36:51 +06:00 |
|
|
f49cc60f9a
|
Renamed route api to route api v1.
|
2023-03-05 20:42:09 +06:00 |
|
|
15225e860c
|
Install Laravel.
|
2023-03-05 20:14:04 +06:00 |
|