summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/githubexplorer.pm10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/githubexplorer.pm b/lib/githubexplorer.pm
index 4fc5aa5..9e5e134 100644
--- a/lib/githubexplorer.pm
+++ b/lib/githubexplorer.pm
@@ -82,4 +82,14 @@ sub graph_repo {
}
}
+sub extract_seed {
+ my $self = shift;
+ $self->_connect unless $self->has_schema;
+ my $profiles = $self->schema->resultset('Profiles')
+ ->search( { blog => { '!=' => undef }, blog => { '!=' => '' } } );
+ while ( my $pr = $profiles->next ) {
+ }
+}
+
+
1;