Skip to content

Commit

Permalink
fix: correct project closure time limit
Browse files Browse the repository at this point in the history
  • Loading branch information
keenthekeen authored Jan 21, 2025
1 parent 9b97d47 commit f4faf60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Models/Project.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ class Project extends Model {
];
protected $hidden = ['user_id'];

public const SUMMARY_TIME_LIMIT = 30; // days
public const VERIFICATION_TIME_LIMIT = 60; // days
public const SUMMARY_TIME_LIMIT = 31; // days; plus one as the time should start from midnight after
public const VERIFICATION_TIME_LIMIT = 61; // days

public function department(): BelongsTo {
return $this->belongsTo(Department::class)->select('id', 'name');
Expand Down

0 comments on commit f4faf60

Please sign in to comment.