dashboard
repositories
filestore
activity
search
login
githubFork
/
gitblit
Gitblit devel
summary
reflog
commits
tree
docs
forks
compare
pages
blame
|
history
|
raw
Expose SSH command as plugin extension point
David Ostrovsky
2014-03-18
821eb4bbe1a4fac8d17b4df96ab6441985df58d7
[githubFork/gitblit.git]
/
src
/
main
/
java
/
com
/
gitblit
/
transport
/
ssh
/
commands
/
PluginDispatchCommand.java
1
2
3
4
5
6
7
8
9
10
11
package com.gitblit.transport.ssh.commands;
import com.gitblit.models.UserModel;
public class PluginDispatchCommand extends DispatchCommand {
@Override
protected void registerCommands(UserModel user) {
// no op
}
}