Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
External Job
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
External Job
Merge requests
!7
Fix user rights, no one needs to be able to create or write job log except the system.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix user rights, no one needs to be able to create or write job log except the system.
topic/17.0/readonly_job_log
into
branch/17.0
Overview
0
Commits
1
Pipelines
1
Changes
5
Merged
Vincent Hatakeyama
requested to merge
topic/17.0/readonly_job_log
into
branch/17.0
6 months ago
Overview
0
Commits
1
Pipelines
1
Changes
5
Expand
0
0
Merge request reports
Compare
branch/17.0
version 2
7b1b8f9f
6 months ago
version 1
a1c85666
6 months ago
branch/17.0 (base)
and
latest version
latest version
f74b3c5b
1 commit,
6 months ago
version 2
7b1b8f9f
1 commit,
6 months ago
version 1
a1c85666
1 commit,
6 months ago
5 files
+
11
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
models/job_log.py
+
1
−
1
Options
@@ -68,7 +68,7 @@ class JobLog(models.Model):
string
=
"
Temporary Out File Name
"
,
size
=
512
,
readonly
=
True
)
out_file
=
fields
.
Binary
(
string
=
"
Output File
"
)
out_file
=
fields
.
Binary
(
string
=
"
Output File
"
,
readonly
=
True
)
filename
=
fields
.
Char
(
string
=
"
Filename
"
)
Loading