Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
Jackett
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
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
Jackett
Commits
a3569535
Commit
a3569535
authored
Jan 29, 2016
by
flightlevel
Browse files
Options
Downloads
Plain Diff
Merge pull request #225 from flightlevel/BasicIndexerMessage
Allow instructions on the basic indexer
parents
cd642a48
04fea529
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Jackett/Content/custom.css
+4
-0
4 additions, 0 deletions
src/Jackett/Content/custom.css
src/Jackett/Models/IndexerConfig/ConfigurationDataBasicLogin.cs
+3
-1
3 additions, 1 deletion
...ckett/Models/IndexerConfig/ConfigurationDataBasicLogin.cs
with
7 additions
and
1 deletion
src/Jackett/Content/custom.css
+
4
−
0
View file @
a3569535
...
...
@@ -293,3 +293,7 @@ pre {
width
:
80px
;
}
.setup-item-displayinfo
:empty
{
display
:
none
;
}
This diff is collapsed.
Click to expand it.
src/Jackett/Models/IndexerConfig/ConfigurationDataBasicLogin.cs
+
3
−
1
View file @
a3569535
...
...
@@ -11,11 +11,13 @@ namespace Jackett.Models.IndexerConfig
{
public
StringItem
Username
{
get
;
private
set
;
}
public
StringItem
Password
{
get
;
private
set
;
}
public
DisplayItem
Instructions
{
get
;
private
set
;
}
public
ConfigurationDataBasicLogin
()
public
ConfigurationDataBasicLogin
(
string
instructionMessageOptional
=
null
)
{
Username
=
new
StringItem
{
Name
=
"Username"
};
Password
=
new
StringItem
{
Name
=
"Password"
};
Instructions
=
new
DisplayItem
(
instructionMessageOptional
)
{
Name
=
""
};
}
...
...
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