Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
cc53aab4
Commit
cc53aab4
authored
Dec 09, 2013
by
Chris Rossi
Committed by
Diana Huang
Jan 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial app and model for LinkedIn integration.
parent
9d0e9f67
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
0 deletions
+18
-0
lms/djangoapps/linkedin/__init__.py
+0
-0
lms/djangoapps/linkedin/management/__init__.py
+0
-0
lms/djangoapps/linkedin/management/commands/__init__.py
+0
-0
lms/djangoapps/linkedin/management/commands/findusers.py
+8
-0
lms/djangoapps/linkedin/models.py
+7
-0
lms/envs/dev.py
+3
-0
No files found.
lms/djangoapps/linkedin/__init__.py
0 → 100644
View file @
cc53aab4
lms/djangoapps/linkedin/management/__init__.py
0 → 100644
View file @
cc53aab4
lms/djangoapps/linkedin/management/commands/__init__.py
0 → 100644
View file @
cc53aab4
lms/djangoapps/linkedin/management/commands/findusers.py
0 → 100644
View file @
cc53aab4
from
django.core.management.base
import
BaseCommand
,
CommandError
class
Command
(
BaseCommand
):
args
=
''
help
=
'Checks LinkedIn for students that are on LinkedIn'
def
handle
(
self
,
*
args
,
**
options
):
print
"Hello World!"
lms/djangoapps/linkedin/models.py
0 → 100644
View file @
cc53aab4
from
django.contrib.auth.models
import
User
from
django.db
import
models
class
LinkedIn
(
models
.
Model
):
user
=
models
.
OneToOneField
(
User
,
primary_key
=
True
)
has_linkedin_account
=
models
.
NullBooleanField
(
default
=
None
)
lms/envs/dev.py
View file @
cc53aab4
...
...
@@ -293,3 +293,6 @@ try:
from
.private
import
*
# pylint: disable=F0401
except
ImportError
:
pass
####################### Linkedin ###########################
INSTALLED_APPS
+=
(
'linkedin'
,)
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