Hi,
I am developing a shop and I already created an admin login using
act_as_authenticated.
I now want to create the following:
- Admin can create a new customer and assign her a discount level
- Admin can basically administer add/delete/edit/list customers
- Customer need to login in order to place an order
- Optional: When customers log in, they could see a history of
previous orders they placed
I have been thinking about this for a few days and my logic says I
need to create a new ‘Customer’ object (and table in my db).
What I am having trouble with is how to implement the customers’ login/
administrating?
I’ve been trying to find a tutorial or howto anywhere, but they only
show how to place an order without logging in.
Any help will be much appreciated.
Elle