Lab as a Service 2.0
[laas.git] / src / api / serializers / old_serializers.py
1 ##############################################################################
2 # Copyright (c) 2016 Max Breitenfeldt and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10
11 from rest_framework import serializers
12
13 from account.models import UserProfile
14 from notifier.models import Notifier
15
16
17 class NotifierSerializer(serializers.ModelSerializer):
18     class Meta:
19         model = Notifier
20         fields = ('id', 'title', 'content', 'user', 'sender', 'message_type', 'msg_sent')
21
22
23 class UserSerializer(serializers.ModelSerializer):
24     username = serializers.CharField(source='user.username')
25
26     class Meta:
27         model = UserProfile
28         fields = ('user', 'username', 'ssh_public_key', 'pgp_public_key', 'email_addr')