Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
C
cordis-decorators
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
3rdeye
cordis-decorators
Commits
60273962
Commit
60273962
authored
Feb 08, 2023
by
nanahira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix ctx.http inject and incorrect injects
parent
ac75643e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/registrar.ts
src/registrar.ts
+5
-1
No files found.
src/registrar.ts
View file @
60273962
...
@@ -289,12 +289,16 @@ export class Registrar<Ctx extends Context> {
...
@@ -289,12 +289,16 @@ export class Registrar<Ctx extends Context> {
if
(
!
name
)
{
if
(
!
name
)
{
continue
;
continue
;
}
}
const
proto
=
Reflect
.
getMetadata
(
'
design:type
'
,
this
,
key
);
Object
.
defineProperty
(
this
,
key
,
{
Object
.
defineProperty
(
this
,
key
,
{
enumerable
:
true
,
enumerable
:
true
,
configurable
:
true
,
configurable
:
true
,
get
:
()
=>
{
get
:
()
=>
{
const
val
=
this
.
__ctx
[
name
];
const
val
=
this
.
__ctx
[
name
];
if
(
typeof
val
===
'
function
'
)
{
if
(
typeof
val
===
'
function
'
&&
(
proto
===
String
||
proto
===
Object
)
)
{
return
(...
args
:
any
[])
=>
this
.
__ctx
[
name
](...
args
);
return
(...
args
:
any
[])
=>
this
.
__ctx
[
name
](...
args
);
}
else
{
}
else
{
return
val
;
return
val
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment