Skip to content

Commit be41312

Browse files
committed
Hide completed column in files
1 parent 903a334 commit be41312

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/app/Models/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class File extends Model
8080
protected $guarded = [];
8181
// I'd like to make archive_paths public later, but it can be quite long so I may need to think of a better way
8282
// Graphql would've been sweet as REST APIs suck in this kind of thing
83-
protected $hidden = ['mod', 'semver_version', 'legacy_mime', 'archive_paths'];
83+
protected $hidden = ['mod', 'semver_version', 'legacy_mime', 'archive_paths', 'completed'];
8484
protected $with = [];
8585

8686
protected $casts = [

0 commit comments

Comments
 (0)