Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Comptoir-srv
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julie gauthier
Comptoir-srv
Commits
47361cce
Commit
47361cce
authored
7 years ago
by
Pastor Mickaël
Browse files
Options
Downloads
Patches
Plain Diff
Related to
Comptoir/Comptoir-srv#415
-> remove useless function again
parent
cc94d2e8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Controller/Api/V1/ScreenshotsController.php
+0
-18
0 additions, 18 deletions
src/Controller/Api/V1/ScreenshotsController.php
with
0 additions
and
18 deletions
src/Controller/Api/V1/ScreenshotsController.php
+
0
−
18
View file @
47361cce
...
...
@@ -120,22 +120,4 @@ class ScreenshotsController extends AppController
}
return
$this
->
redirect
([
'action'
=>
'index'
]);
}
/**
* Returns all screenshots for a specific software
* @param Integer $id
*/
public
function
getScreenshotsBySoftwareId
(
$id
=
null
)
{
if
(
$id
!=
null
&&
$this
->
request
->
is
(
'get'
)
&&
$this
->
response
->
type
(
'json'
))
{
$screenshotsSoftwares
=
$this
->
Screenshots
->
find
(
'all'
,
[
'conditions'
=>
[
"software_id = "
=>
$id
,
'url_directory !='
=>
'null'
]
]);
$this
->
set
(
compact
(
'screenshotsSoftwares'
,
'id'
));
$this
->
set
(
'_serialize'
,
[
'screenshotsSoftwares'
,
'id'
]);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment