Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
afb83d08
Commit
afb83d08
authored
3 years ago
by
Jonas Braathen
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused Like lookup type
parent
893f58c9
No related branches found
No related tags found
1 merge request
!215
Add CSRF_TRUSTED_ORIGINS to development settings
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
greg/models.py
+1
-15
1 addition, 15 deletions
greg/models.py
with
1 addition
and
15 deletions
greg/models.py
+
1
−
15
View file @
afb83d08
...
@@ -6,26 +6,12 @@ from typing import Optional
...
@@ -6,26 +6,12 @@ from typing import Optional
from
dirtyfields
import
DirtyFieldsMixin
from
dirtyfields
import
DirtyFieldsMixin
from
django.conf
import
settings
from
django.conf
import
settings
from
django.db
import
models
from
django.db
import
models
from
django.db.models
import
Lookup
,
Q
from
django.db.models
import
Q
from
django.db.models.fields
import
Field
from
django.utils
import
timezone
from
django.utils
import
timezone
from
greg.managers
import
PersonManager
from
greg.managers
import
PersonManager
@Field.register_lookup
class
Like
(
Lookup
):
"""
Allows doing LIKE comparisons when querying.
"""
lookup_name
=
"
like
"
def
as_sql
(
self
,
compiler
,
connection
):
lhs
,
lhs_params
=
self
.
process_lhs
(
compiler
,
connection
)
rhs
,
rhs_params
=
self
.
process_rhs
(
compiler
,
connection
)
params
=
lhs_params
+
rhs_params
return
"
%s LIKE %s
"
%
(
lhs
,
rhs
),
params
class
BaseModel
(
DirtyFieldsMixin
,
models
.
Model
):
class
BaseModel
(
DirtyFieldsMixin
,
models
.
Model
):
"""
Common fields for all models.
"""
"""
Common fields for all models.
"""
...
...
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